cf.addListener(new ChannelFutureListener() {
@Override
public void operationComplete(ChannelFuture future) throws Exception {
LOGGER.debug("P5633_EncryptedRC4Key sent, adding RC4Encoder to pipeline");
RC4Encoder rc4Encoder = new RC4Encoder(rc4Key);
ctx.pipeline().addFirst("rc4EnCoder", rc4Encoder);
// Retrieve the map this user is on
MapData map = serverData.getMap();
CharacterData character = serverData.getCurrentCharacter();