Renamed Crafter block to better fit role
This commit is contained in:
@@ -20,7 +20,7 @@ public class ProductionBlocks{
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
smelter = new Crafter("smelter"){
|
smelter = new Smelter("smelter"){
|
||||||
{
|
{
|
||||||
health = 70;
|
health = 70;
|
||||||
inputs = new Item[]{Item.iron};
|
inputs = new Item[]{Item.iron};
|
||||||
@@ -29,7 +29,7 @@ public class ProductionBlocks{
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
crucible = new Crafter("crucible"){
|
crucible = new Smelter("crucible"){
|
||||||
{
|
{
|
||||||
health = 90;
|
health = 90;
|
||||||
inputs = new Item[]{Item.titanium, Item.steel};
|
inputs = new Item[]{Item.titanium, Item.steel};
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ import io.anuke.ucore.util.Strings;
|
|||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
public class Crafter extends Block{
|
public class Smelter extends Block{
|
||||||
protected final int timerDump = timers++;
|
protected final int timerDump = timers++;
|
||||||
protected final int timerCraft = timers++;
|
protected final int timerCraft = timers++;
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ public class Crafter extends Block{
|
|||||||
|
|
||||||
protected int capacity = 30;
|
protected int capacity = 30;
|
||||||
|
|
||||||
public Crafter(String name) {
|
public Smelter(String name) {
|
||||||
super(name);
|
super(name);
|
||||||
update = true;
|
update = true;
|
||||||
solid = true;
|
solid = true;
|
||||||
Reference in New Issue
Block a user