cannot delete gold

This commit is contained in:
2024-02-19 17:19:34 -06:00
parent d9a03ebf93
commit 1e9f1685da
+2
View File
@@ -889,6 +889,8 @@ public class Item extends AbstractWorldObject {
} }
public boolean isCanDestroy() { public boolean isCanDestroy() {
if(this.getItemBaseID() == 7)//gold
return false;
return canDestroy; return canDestroy;
} }