From df483cd566ab11c55b9f71e3ab36cfbeaa9388d4 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Mon, 12 Mar 2007 22:20:39 +0000 Subject: [PATCH] You can't use that! It's the square of an imaginary number! (0 should mean no-value) git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@238 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/as/com/threerings/ezgame/EZGameControl.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/ezgame/EZGameControl.as b/src/as/com/threerings/ezgame/EZGameControl.as index 7b21faf3..98aa6ab0 100644 --- a/src/as/com/threerings/ezgame/EZGameControl.as +++ b/src/as/com/threerings/ezgame/EZGameControl.as @@ -504,7 +504,7 @@ public class EZGameControl extends BaseControl * Ends the current round. If nextRoundDelay is greater than zero, the next round will be * started in the specified number of seconds. */ - public function endRound (nextRoundDelay :int = -1) :void + public function endRound (nextRoundDelay :int = 0) :void { callEZCode("endRound_v1", nextRoundDelay); }