diff options
-rw-r--r-- | server/standard.cpp | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/server/standard.cpp b/server/standard.cpp index 78367b5..d74ad17 100644 --- a/server/standard.cpp +++ b/server/standard.cpp @@ -458,12 +458,8 @@ bool Standard::round_action(Action action) { draw_phase = false;//player must discard extra tile - //Player steals round - if(current_player == 0) { - current_player = 3; - } else { - current_player = action.player-1; - } + //Play continues to the right + current_player = action.player; } break; @@ -488,12 +484,8 @@ bool Standard::round_action(Action action) { draw_phase = false;//player must discard extra tile - //Player steals round - if(current_player == 0) { - current_player = 3; - } else { - current_player = action.player-1; - } + //Play continues to the right + current_player = action.player; } break; |