mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-28 00:19:57 +07:00
Fixed plastanium compressor
This commit is contained in:
parent
8760e99c43
commit
6ff44fddd0
@ -52,9 +52,10 @@ public class CraftingBlocks extends BlockList implements ContentList {
|
||||
flameColor = Color.valueOf("ffef99");
|
||||
}};
|
||||
|
||||
plastaniumCompressor = new PlasteelCompressor("plastanium-compressor") {{
|
||||
plastaniumCompressor = new PlastaniumCompressor("plastanium-compressor") {{
|
||||
inputLiquid = Liquids.oil;
|
||||
inputItem = new ItemStack(Items.carbide, 1);
|
||||
inputItem = new ItemStack(Items.titanium, 2);
|
||||
hasItems = true;
|
||||
liquidUse = 0.3f;
|
||||
liquidCapacity = 60f;
|
||||
powerUse = 0.5f;
|
||||
|
@ -4,9 +4,9 @@ import io.anuke.mindustry.world.Tile;
|
||||
import io.anuke.ucore.graphics.Draw;
|
||||
import io.anuke.ucore.util.Mathf;
|
||||
|
||||
public class PlasteelCompressor extends GenericCrafter {
|
||||
public class PlastaniumCompressor extends GenericCrafter {
|
||||
|
||||
public PlasteelCompressor(String name) {
|
||||
public PlastaniumCompressor(String name) {
|
||||
super(name);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user