Handler created for PromptRecallMsg

This commit is contained in:
2024-03-27 13:34:32 -04:00
parent 5cfbd9998c
commit 507ec302e7
4 changed files with 86 additions and 67 deletions
@@ -916,12 +916,6 @@ public class ClientMessagePump implements NetMsgHandler {
case ARCPETCMD:
petCmd((PetCmdMsg) msg, origin);
break;
case MANAGENPC:
ManageNPCCmd((ManageNPCMsg) msg, origin);
break;
case ARCPROMPTRECALL:
MovementManager.HandlePromptRecall((PromptRecallMsg) msg, origin);
break;
case CHANNELMUTE:
break;
case KEEPALIVESERVERCLIENT:
@@ -947,15 +941,6 @@ public class ClientMessagePump implements NetMsgHandler {
return true;
}
//TODO what is this used for?
private void ManageNPCCmd(ManageNPCMsg msg, ClientConnection origin) {
}
//call this if the transfer fails server side to kick the item back to inventory from equip
private void forceTransferFromInventoryToEquip(TransferItemFromEquipToInventoryMsg msg, ClientConnection origin, String reason) {
//TODO add this later
//PATCHED CODEZZ
}
}