Renamed Crafter block to better fit role

This commit is contained in:
Anuken
2018-01-05 19:12:06 -05:00
parent cda1115e9d
commit 39fab0c842
2 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ public class ProductionBlocks{
}
},
smelter = new Crafter("smelter"){
smelter = new Smelter("smelter"){
{
health = 70;
inputs = new Item[]{Item.iron};
@@ -29,7 +29,7 @@ public class ProductionBlocks{
}
},
crucible = new Crafter("crucible"){
crucible = new Smelter("crucible"){
{
health = 90;
inputs = new Item[]{Item.titanium, Item.steel};

View File

@@ -17,7 +17,7 @@ import io.anuke.ucore.util.Strings;
import java.util.Arrays;
public class Crafter extends Block{
public class Smelter extends Block{
protected final int timerDump = timers++;
protected final int timerCraft = timers++;
@@ -31,7 +31,7 @@ public class Crafter extends Block{
protected int capacity = 30;
public Crafter(String name) {
public Smelter(String name) {
super(name);
update = true;
solid = true;