Skip to content

Commit

Permalink
Made method TurnNumberSequence.getNextTurnNumber() return the calcula…
Browse files Browse the repository at this point in the history
…ted turn number.
  • Loading branch information
wubin28 committed Jun 11, 2014
1 parent b32189e commit 646bdcb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -6,6 +6,6 @@ public class TurnNumberSequence

public static int getNextTurnNumber()
{
return turnNumber++;
return ++turnNumber;
}
}

0 comments on commit 646bdcb

Please sign in to comment.