From 2c89082a2e8feed9b4227f68300ddc610341507e Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 15 Feb 2007 00:05:11 +0000 Subject: [PATCH] Bugfix: hadn't tested this with seated games. :) git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@191 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/as/com/threerings/ezgame/client/GameControlBackend.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/ezgame/client/GameControlBackend.as b/src/as/com/threerings/ezgame/client/GameControlBackend.as index 9a1591c0..ef77b841 100644 --- a/src/as/com/threerings/ezgame/client/GameControlBackend.as +++ b/src/as/com/threerings/ezgame/client/GameControlBackend.as @@ -757,7 +757,7 @@ public class GameControlBackend if (_ezObj.players.length == 0) { return true; // party game: all occupants are players } - return (-1 == _ezObj.getPlayerIndex(occupantName)); + return (-1 != _ezObj.getPlayerIndex(occupantName)); } protected var _ctx :CrowdContext;