forked from MagicBane/Server
Resource Merchant
This commit is contained in:
@@ -1375,19 +1375,23 @@ public class ClientMessagePump implements NetMsgHandler {
|
||||
try {
|
||||
CharacterItemManager itemMan = sourcePlayer.getCharItemManager();
|
||||
|
||||
if (itemMan == null)
|
||||
if (itemMan == null) {
|
||||
ChatManager.chatSystemError(sourcePlayer,"Item Man Null");
|
||||
return;
|
||||
}
|
||||
|
||||
NPC npc = NPC.getFromCache(msg.getNPCID());
|
||||
|
||||
if (npc == null)
|
||||
if (npc == null) {
|
||||
ChatManager.chatSystemError(sourcePlayer,"NPC Null");
|
||||
return;
|
||||
|
||||
}
|
||||
Item gold = itemMan.getGoldInventory();
|
||||
|
||||
if (gold == null)
|
||||
if (gold == null) {
|
||||
ChatManager.chatSystemError(sourcePlayer,"Gold Null");
|
||||
return;
|
||||
|
||||
}
|
||||
Item buy = null;
|
||||
|
||||
if (msg.getItemType() == GameObjectType.MobEquipment.ordinal()) {
|
||||
|
||||
Reference in New Issue
Block a user