Buff the water crucible melt rate.

This commit is contained in:
thedarkcolour 2024-07-28 16:33:00 -07:00
parent 3ff01d6c26
commit aec3387b5d
No known key found for this signature in database
GPG Key ID: 6599A8E0516C8F38
2 changed files with 6 additions and 3 deletions

View File

@ -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;

View File

@ -43,4 +43,9 @@ public class WaterCrucibleBlockEntity extends AbstractCrucibleBlockEntity {
public Block getDefaultMeltBlock() {
return Blocks.OAK_LEAVES;
}
@Override
public int getMeltingRate() {
return 4;
}
}