forked from MagicBane/Server
Error logging addded
This commit is contained in:
@@ -80,24 +80,29 @@ public class ItemBase {
|
|||||||
|
|
||||||
this.twoHanded = (rs.getInt("twoHanded") == 1);
|
this.twoHanded = (rs.getInt("twoHanded") == 1);
|
||||||
|
|
||||||
switch (ItemTemplate.itemTemplates.get(this.getUUID()).item_type) {
|
ItemTemplate template = ItemTemplate.itemTemplates.get(this.getUUID());
|
||||||
case RUNE:
|
|
||||||
case SCROLL:
|
if (template == null)
|
||||||
case WAND:
|
Logger.error(this.getUUID() + " null template");
|
||||||
case POTION:
|
else
|
||||||
case CHARTER:
|
switch (ItemTemplate.itemTemplates.get(this.getUUID()).item_type) {
|
||||||
case DEED:
|
case RUNE:
|
||||||
case EMPLOYMENTCONTRACT:
|
case SCROLL:
|
||||||
case BUCKET:
|
case WAND:
|
||||||
case REALMCHARTER:
|
case POTION:
|
||||||
case TREASURE:
|
case CHARTER:
|
||||||
this.isConsumable = true;
|
case DEED:
|
||||||
break;
|
case EMPLOYMENTCONTRACT:
|
||||||
case OFFERING:
|
case BUCKET:
|
||||||
this.isConsumable = true;
|
case REALMCHARTER:
|
||||||
Boon.HandleBoonListsForItemBase(uuid);
|
case TREASURE:
|
||||||
break;
|
this.isConsumable = true;
|
||||||
}
|
break;
|
||||||
|
case OFFERING:
|
||||||
|
this.isConsumable = true;
|
||||||
|
Boon.HandleBoonListsForItemBase(uuid);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
DbManager.ItemBaseQueries.LOAD_ANIMATIONS(this);
|
DbManager.ItemBaseQueries.LOAD_ANIMATIONS(this);
|
||||||
|
|||||||
Reference in New Issue
Block a user