Changed enum to two booleans

This commit is contained in:
Anuken
2018-09-19 10:32:06 -04:00
parent 737ad5c8b7
commit 5325488099
6 changed files with 16 additions and 10 deletions

View File

@@ -65,11 +65,15 @@ public class PowerBlocks extends BlockList implements ContentList{
battery = new PowerDistributor("battery"){{
powerCapacity = 320f;
outputsPower = true;
consumesPower = true;
}};
batteryLarge = new PowerDistributor("battery-large"){{
size = 3;
powerCapacity = 2000f;
outputsPower = true;
consumesPower = true;
}};
powerNode = new PowerNode("power-node"){{