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;
|
||||
}
|
||||
|
||||
public int getMeltingRate() {
|
||||
return 1;
|
||||
}
|
||||
public abstract int getMeltingRate();
|
||||
|
||||
public int getSolids() {
|
||||
return this.solids;
|
||||
|
|
|
|||
|
|
@ -43,4 +43,9 @@ public class WaterCrucibleBlockEntity extends AbstractCrucibleBlockEntity {
|
|||
public Block getDefaultMeltBlock() {
|
||||
return Blocks.OAK_LEAVES;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getMeltingRate() {
|
||||
return 4;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user