Implement food buffs

This commit is contained in:
Melledy
2022-07-22 03:46:59 -07:00
parent e9a95b89cf
commit 0d17c4a088
8 changed files with 311 additions and 1 deletions

View File

@@ -7,6 +7,9 @@ public class ItemUseData {
private String[] useParam;
public ItemUseOp getUseOp() {
if (useOp == null) {
useOp = ItemUseOp.ITEM_USE_NONE;
}
return useOp;
}