forked from MagicBane/Server
Error logging added
This commit is contained in:
@@ -17,6 +17,7 @@ import engine.net.*;
|
||||
import engine.objects.Building;
|
||||
import engine.objects.Item;
|
||||
import engine.objects.NPC;
|
||||
import org.pmw.tinylog.Logger;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
@@ -126,12 +127,17 @@ public class ItemProductionMsg extends ClientNetMsg {
|
||||
writer.put((byte) 1);
|
||||
|
||||
Item item;
|
||||
|
||||
if (this.itemUUID > 0)
|
||||
item = Item.getFromCache(this.itemUUID);
|
||||
else
|
||||
item = ForgeManager.inMemoryItemLookup.get(this.itemUUID);
|
||||
|
||||
Item.serializeForClientMsgWithoutSlot(item, writer);
|
||||
if (item == null)
|
||||
Logger.error("Null item serialized");
|
||||
else
|
||||
Item.serializeForClientMsgWithoutSlot(item, writer);
|
||||
|
||||
writer.putInt(building.getStrongboxValue());
|
||||
writer.putInt(0);
|
||||
writer.putInt(0);
|
||||
@@ -149,7 +155,10 @@ public class ItemProductionMsg extends ClientNetMsg {
|
||||
else
|
||||
item = ForgeManager.inMemoryItemLookup.get(this.itemUUID);
|
||||
|
||||
Item.serializeForClientMsgWithoutSlot(item, writer);
|
||||
if (item == null)
|
||||
Logger.error("Null item serialized");
|
||||
else
|
||||
Item.serializeForClientMsgWithoutSlot(item, writer);
|
||||
|
||||
writer.putInt(building.getStrongboxValue());
|
||||
writer.putInt(0);
|
||||
|
||||
Reference in New Issue
Block a user