Fixed typo preventing Debug messages

pull/14/head
Sam Bosley 13 years ago
parent 17fdb0520e
commit 6947d411fd

@ -38,7 +38,7 @@ public abstract class ServerToClientMessage {
return new UserData(json);
else if (TYPE_DOUBLE_CHECK.equals(json))
return new DoubleCheck(json);
else if (TYPE_DEBUG.equals(json))
else if (TYPE_DEBUG.equals(type))
return new Debug(json);
return null;

Loading…
Cancel
Save