Fixed node connection bug

This commit is contained in:
Anuken
2018-09-20 09:24:31 -04:00
parent ecad5772d2
commit acb8496352
3 changed files with 19 additions and 7 deletions

View File

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