mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-08-02 16:09:38 +07:00
Fixed plastanium compressor
This commit is contained in:
@ -52,9 +52,10 @@ public class CraftingBlocks extends BlockList implements ContentList {
|
|||||||
flameColor = Color.valueOf("ffef99");
|
flameColor = Color.valueOf("ffef99");
|
||||||
}};
|
}};
|
||||||
|
|
||||||
plastaniumCompressor = new PlasteelCompressor("plastanium-compressor") {{
|
plastaniumCompressor = new PlastaniumCompressor("plastanium-compressor") {{
|
||||||
inputLiquid = Liquids.oil;
|
inputLiquid = Liquids.oil;
|
||||||
inputItem = new ItemStack(Items.carbide, 1);
|
inputItem = new ItemStack(Items.titanium, 2);
|
||||||
|
hasItems = true;
|
||||||
liquidUse = 0.3f;
|
liquidUse = 0.3f;
|
||||||
liquidCapacity = 60f;
|
liquidCapacity = 60f;
|
||||||
powerUse = 0.5f;
|
powerUse = 0.5f;
|
||||||
|
@ -4,9 +4,9 @@ import io.anuke.mindustry.world.Tile;
|
|||||||
import io.anuke.ucore.graphics.Draw;
|
import io.anuke.ucore.graphics.Draw;
|
||||||
import io.anuke.ucore.util.Mathf;
|
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);
|
super(name);
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue
Block a user