diff --git a/src/as/com/threerings/parlor/game/data/GameConfig.as b/src/as/com/threerings/parlor/game/data/GameConfig.as index 44c43b91..1986a6e5 100644 --- a/src/as/com/threerings/parlor/game/data/GameConfig.as +++ b/src/as/com/threerings/parlor/game/data/GameConfig.as @@ -133,7 +133,7 @@ public /*abstract*/ class GameConfig extends PlaceConfig public function equals (other :Object) :Boolean { // make sure they're of the same class - if (ClassUtil.getClassName(other) == ClassUtil.getClassName(this)) { + if (ClassUtil.isSameClass(other, this)) { var that :GameConfig = GameConfig(other); return this.rated == that.rated;