mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
A bit of cleanup; no code change.
This commit is contained in:
parent
cf6a3db940
commit
1a2ce36bb0
1 changed files with 7 additions and 9 deletions
|
@ -2051,8 +2051,7 @@ board_beginTrade( BoardCtxt* board )
|
|||
trade */
|
||||
if ( 0 != model_getCurrentMoveCount( board->model, board->selPlayer )){
|
||||
util_userError( board->util, ERR_CANT_TRADE_MID_MOVE );
|
||||
} else {
|
||||
if ( server_countTilesInPool(board->server) < MIN_TRADE_TILES){
|
||||
} else if ( server_countTilesInPool(board->server) < MIN_TRADE_TILES){
|
||||
util_userError( board->util, ERR_TOO_FEW_TILES_LEFT_TO_TRADE );
|
||||
} else {
|
||||
board->tradingMiniWindowInvalid = XP_TRUE;
|
||||
|
@ -2062,7 +2061,6 @@ board_beginTrade( BoardCtxt* board )
|
|||
result = XP_TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
return result;
|
||||
} /* board_beginTrade */
|
||||
|
||||
|
|
Loading…
Reference in a new issue