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;
|
return InsertionResult.NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
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