This commit is contained in:
Anuken
2020-04-13 18:07:00 -04:00
parent 2af12a632a
commit c717084cb9
7 changed files with 26 additions and 163 deletions
@@ -0,0 +1,21 @@
package mindustry.world.blocks.legacy;
import arc.util.io.*;
import mindustry.gen.*;
import mindustry.world.*;
public class LegacyCommandCenter extends Block{
public LegacyCommandCenter(String name){
super(name);
update = true;
}
public class LegacyCommandCenterEntity extends TileEntity{
@Override
public void read(Reads read, byte revision){
super.read(read, revision);
read.b();
}
}
}