Buff wooden crucibles
This commit is contained in:
parent
8149c8c896
commit
da1bd52a24
|
|
@ -250,9 +250,7 @@ public abstract class AbstractCrucibleBlockEntity extends ETankBlockEntity {
|
|||
return InsertionResult.NO;
|
||||
}
|
||||
|
||||
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