mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-12 10:59:22 +07:00
Move capacity into crater
This commit is contained in:
parent
7ddcd93a57
commit
087aef6b85
@ -915,9 +915,8 @@ public class Blocks implements ContentList{
|
||||
|
||||
plastaniumConveyor = new CraterConveyor("plastanium-conveyor"){{
|
||||
requirements(Category.distribution, ItemStack.with(Items.plastanium, 1, Items.silicon, 1, Items.graphite, 1));
|
||||
itemCapacity = 8;
|
||||
speed = 0.04f;
|
||||
health = 75;
|
||||
speed = 0.04f;
|
||||
}};
|
||||
|
||||
armoredConveyor = new ArmoredConveyor("armored-conveyor"){{
|
||||
|
@ -34,7 +34,7 @@ public class CraterConveyor extends Block implements Autotiler{
|
||||
layer = Layer.overlay;
|
||||
group = BlockGroup.transportation;
|
||||
hasItems = true;
|
||||
itemCapacity = 4;
|
||||
itemCapacity = 8;
|
||||
conveyorPlacement = true;
|
||||
entityType = CraterConveyorEntity::new;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user