Non-overdriveable core / Spurious mod warning fix

This commit is contained in:
Anuken 2021-03-02 18:45:18 -05:00
parent 19eb6334b7
commit ea82773157
2 changed files with 2 additions and 0 deletions

View file

@ -291,6 +291,7 @@ public class ContentParser{
if(value.has("controller")){
unit.defaultController = supply(resolve(value.getString("controller"), FlyingAI.class));
value.remove("controller");
}
//read extra default waves

View file

@ -52,6 +52,7 @@ public class CoreBlock extends StorageBlock{
loopSoundVolume = 1f;
group = BlockGroup.none;
drawDisabled = false;
canOverdrive = false;
}
@Remote(called = Loc.server)