Rename class to whats logical
This commit is contained in:
@@ -1013,7 +1013,7 @@ public class Blocks implements ContentList{
|
|||||||
health = 90;
|
health = 90;
|
||||||
}};
|
}};
|
||||||
|
|
||||||
platedConduit = new PlatedConduit("plated-conduit"){{
|
platedConduit = new ArmoredConduit("plated-conduit"){{
|
||||||
requirements(Category.liquid, ItemStack.with(Items.thorium, 2, Items.metaglass, 1));
|
requirements(Category.liquid, ItemStack.with(Items.thorium, 2, Items.metaglass, 1));
|
||||||
liquidCapacity = 16f;
|
liquidCapacity = 16f;
|
||||||
health = 220;
|
health = 220;
|
||||||
|
|||||||
@@ -10,11 +10,11 @@ import io.anuke.mindustry.world.Block;
|
|||||||
import io.anuke.mindustry.world.Edges;
|
import io.anuke.mindustry.world.Edges;
|
||||||
import io.anuke.mindustry.world.Tile;
|
import io.anuke.mindustry.world.Tile;
|
||||||
|
|
||||||
public class PlatedConduit extends Conduit{
|
public class ArmoredConduit extends Conduit{
|
||||||
|
|
||||||
protected TextureRegion capRegion;
|
protected TextureRegion capRegion;
|
||||||
|
|
||||||
public PlatedConduit(String name) {
|
public ArmoredConduit(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
leakRate = 10f;
|
leakRate = 10f;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user