From f663e36fe6ddebb4b2eefbc2e142e3d9b227d948 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 6 Jun 2008 14:37:41 +0000 Subject: [PATCH] A missed spot of roundId -> sessionId. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@612 c613c5cb-e716-0410-b11b-feb51c14d237 --- .../puzzle/client/PuzzleGameService.java | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/java/com/threerings/puzzle/client/PuzzleGameService.java b/src/java/com/threerings/puzzle/client/PuzzleGameService.java index 950c0d3f..83beda5b 100644 --- a/src/java/com/threerings/puzzle/client/PuzzleGameService.java +++ b/src/java/com/threerings/puzzle/client/PuzzleGameService.java @@ -28,22 +28,21 @@ import com.threerings.puzzle.data.Board; import com.threerings.puzzle.data.PuzzleCodes; /** - * Provides services used by puzzle game clients to request that actions - * be taken by the puzzle manager. + * Provides services used by puzzle game clients to request that actions be taken by the puzzle + * manager. */ public interface PuzzleGameService extends InvocationService, PuzzleCodes { /** - * Asks the puzzle manager to apply the supplied progress events for - * the specified puzzle round to the player's state. + * Asks the puzzle manager to apply the supplied progress events for the specified puzzle round + * to the player's state. */ - public void updateProgress (Client client, int roundId, int[] events); + public void updateProgress (Client client, int sessionId, int[] events); /** * Debug variant of {@link #updateProgress} that is only used when - * {@link PuzzlePanel#isSyncingBoards} is true and which includes the - * board states associated with each event. + * {@link PuzzlePanel#isSyncingBoards} is true and which includes the board states associated + * with each event. */ - public void updateProgressSync ( - Client client, int roundId, int[] events, Board[] states); + public void updateProgressSync (Client client, int sessionId, int[] events, Board[] states); }