Should fix server crash problem when harvesting biomass

This commit is contained in:
Simon
2018-08-13 15:43:41 -04:00
parent e69111ff3c
commit 96fc3ed68c
5 changed files with 13 additions and 3 deletions

View File

@@ -17,6 +17,10 @@ public class ItemBiomass extends Item {
return ID;
}
public ItemBiomass() {
super(null);
}
public ItemBiomass(Document document) {
super(document);
}