Match change to narya; allow "playerReady" only.

This commit is contained in:
Ray J. Greenwell
2012-07-19 11:52:25 -07:00
parent e379c289c1
commit b3226c0bed
@@ -696,9 +696,9 @@ public class GameManager extends PlaceManager
} }
@Override @Override
protected boolean handleManagerCalls () protected boolean allowManagerCall (String method)
{ {
return true; return "playerReady".equals(method) || super.allowManagerCall(method);
} }
/** /**