Quick bugfix for bugfix. Also removed TME prefix on structure names.
- Fix megastructure coronal tap stuck on being repaired
- Fix gamma core upkeep reduction not applying to tme structures
Should be save compatibleIf the fix for coronal tap doesn't work. Here is an alternative (needs console commands mod). Be sure to be in the same system as the coronal tap. Then wait for 5 days.
runcode StarSystemAPI starSystem = Global.getSector().getPlayerFleet().getStarSystem();
List<SectorEntityToken> entities = starSystem.getAllEntities();
for (SectorEntityToken entity : entities) {
if (Objects.equals(entity.getCustomEntityType(), Entities.CORONAL_TAP)) {
entity.getMemoryWithoutUpdate().set("$beingRepaired", true, 5f);
}
}