Buff the water crucible melt rate.
This commit is contained in:
parent
3ff01d6c26
commit
aec3387b5d
|
|
@ -240,9 +240,7 @@ public abstract class AbstractCrucibleBlockEntity extends ETankBlockEntity {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getMeltingRate() {
|
public abstract int getMeltingRate();
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getSolids() {
|
public int getSolids() {
|
||||||
return this.solids;
|
return this.solids;
|
||||||
|
|
|
||||||
|
|
@ -43,4 +43,9 @@ public class WaterCrucibleBlockEntity extends AbstractCrucibleBlockEntity {
|
||||||
public Block getDefaultMeltBlock() {
|
public Block getDefaultMeltBlock() {
|
||||||
return Blocks.OAK_LEAVES;
|
return Blocks.OAK_LEAVES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getMeltingRate() {
|
||||||
|
return 4;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user