playerIdx -> playerId

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@192 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2007-02-15 01:53:17 +00:00
parent 2c89082a2e
commit 720a409185
+2 -2
View File
@@ -23,10 +23,10 @@ public class CardDeck
}
public function dealToPlayer (
playerIdx :int, count :int, msgName :String) :void
playerId :int, count :int, msgName :String) :void
{
// TODO: support the callback
_gameCtrl.dealFromCollection(_deckName, count, msgName, null, playerIdx);
_gameCtrl.dealFromCollection(_deckName, count, msgName, null, playerId);
}
public function dealToData (count :int, propName :String) :void