diff --git a/trunk/java/com/l2jmobius/gameserver/data/sql/impl/OfflineTradersTable.java b/trunk/java/com/l2jmobius/gameserver/data/sql/impl/OfflineTradersTable.java index d2dc9f80bd..54c59285bb 100644 --- a/trunk/java/com/l2jmobius/gameserver/data/sql/impl/OfflineTradersTable.java +++ b/trunk/java/com/l2jmobius/gameserver/data/sql/impl/OfflineTradersTable.java @@ -242,7 +242,8 @@ public class OfflineTradersTable { if (player.getBuyList().addItemByItemId(items.getInt(2), items.getLong(3), items.getLong(4)) == null) { - throw new NullPointerException(); + continue; + // throw new NullPointerException(); } } player.getBuyList().setTitle(rs.getString("title")); @@ -264,7 +265,8 @@ public class OfflineTradersTable { if (player.getSellList().addItem(items.getInt(2), items.getLong(3), items.getLong(4)) == null) { - throw new NullPointerException(); + continue; + // throw new NullPointerException(); } } }