PlayerChar p = (PlayerChar) session.getAttribute("player");
p.lastPacket = System.currentTimeMillis();
switch(message.charAt(0)) {
case 'U':
//Move up
p.queueMovement(Direction.Up);
break;
case 'D':
//Move down
p.queueMovement(Direction.Down);
break;