Add CookTimeTotal API to Furnace

This commit is contained in:
md_5 2019-01-23 10:26:43 +11:00
parent 1a64d4ae2b
commit 61c762f448

View File

@ -55,6 +55,16 @@ public class CraftFurnace extends CraftContainer<TileEntityFurnace> implements F
this.getSnapshot().setProperty(2, cookTime);
}
@Override
public int getCookTimeTotal() {
return this.getSnapshot().getProperty(3);
}
@Override
public void setCookTimeTotal(int cookTimeTotal) {
this.getSnapshot().setProperty(3, cookTimeTotal);
}
@Override
public String getCustomName() {
TileEntityFurnace furnace = this.getSnapshot();