Catching CommandQueueRemove

This commit is contained in:
Treeku
2014-03-03 19:52:15 +00:00
parent c28041dd08
commit ed098357ae
2 changed files with 10 additions and 1 deletions
+9 -1
View File
@@ -22,7 +22,6 @@
package services.command;
import java.nio.ByteOrder;
import java.util.HashMap;
import java.util.Map;
import java.util.Vector;
import java.util.concurrent.ConcurrentHashMap;
@@ -114,6 +113,15 @@ public class CommandService implements INetworkDispatch {
}
});
objControllerOpcodes.put(ObjControllerOpcodes.COMMAND_QUEUE_REMOVE, new INetworkRemoteEvent() {
@Override
public void handlePacket(IoSession session, IoBuffer data) throws Exception {
}
});
}