More balancing and cleanup
This commit is contained in:
@@ -1249,7 +1249,7 @@ public class Blocks implements ContentList{
|
|||||||
requirements(Category.effect, () -> world.isZone(), ItemStack.with(Items.copper, 500, Items.silicon, 150, Items.lead, 200));
|
requirements(Category.effect, () -> world.isZone(), ItemStack.with(Items.copper, 500, Items.silicon, 150, Items.lead, 200));
|
||||||
size = 3;
|
size = 3;
|
||||||
itemCapacity = 100;
|
itemCapacity = 100;
|
||||||
launchTime = 60f * 8;
|
launchTime = 60f * 16;
|
||||||
hasPower = true;
|
hasPower = true;
|
||||||
consumes.power(1f);
|
consumes.power(1f);
|
||||||
}};
|
}};
|
||||||
@@ -1258,7 +1258,7 @@ public class Blocks implements ContentList{
|
|||||||
requirements(Category.effect, () -> world.isZone(), ItemStack.with(Items.titanium, 400, Items.silicon, 300, Items.lead, 500, Items.plastanium, 150));
|
requirements(Category.effect, () -> world.isZone(), ItemStack.with(Items.titanium, 400, Items.silicon, 300, Items.lead, 500, Items.plastanium, 150));
|
||||||
size = 4;
|
size = 4;
|
||||||
itemCapacity = 250;
|
itemCapacity = 250;
|
||||||
launchTime = 60f * 7;
|
launchTime = 60f * 14;
|
||||||
hasPower = true;
|
hasPower = true;
|
||||||
consumes.power(2f);
|
consumes.power(2f);
|
||||||
}};
|
}};
|
||||||
|
|||||||
@@ -162,6 +162,12 @@ public class PlacementFragment extends Fragment{
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
//add missing elements to even out table size
|
||||||
|
if(index < 4){
|
||||||
|
for(int i = 0; i < 4-index; i++){
|
||||||
|
blockTable.add().size(46f);
|
||||||
|
}
|
||||||
|
}
|
||||||
blockTable.act(0f);
|
blockTable.act(0f);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user