From e379c289c1f516aef86d447740aa4c312720be22 Mon Sep 17 00:00:00 2001 From: "Ray J. Greenwell" Date: Wed, 18 Jul 2012 18:21:23 -0700 Subject: [PATCH] GameManager needs to allow manager calls. Enabling this to make sure code doesn't break. Updated to depend on narya 1.13-SNAPSHOT, which I'm pretty sure is bad joojoo, but maybe that means it's time to pinch off narya 1.13 so that this can depend on a stable version. --- pom.xml | 2 +- .../java/com/threerings/parlor/game/server/GameManager.java | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8acf0a5c..7caf62d2 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ com.threerings narya - 1.11 + 1.13-SNAPSHOT com.threerings diff --git a/src/main/java/com/threerings/parlor/game/server/GameManager.java b/src/main/java/com/threerings/parlor/game/server/GameManager.java index 0cd7336b..22736f13 100644 --- a/src/main/java/com/threerings/parlor/game/server/GameManager.java +++ b/src/main/java/com/threerings/parlor/game/server/GameManager.java @@ -695,6 +695,12 @@ public class GameManager extends PlaceManager return (player instanceof BodyObject) ? (BodyObject) player : null; } + @Override + protected boolean handleManagerCalls () + { + return true; + } + /** * Returns true if this game requires a no-show timer. The default implementation returns true * for non-party games and false for party games. Derived classes may wish to change or augment