diff options
Diffstat (limited to 'sigencore/Arena.cpp')
| -rw-r--r-- | sigencore/Arena.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sigencore/Arena.cpp b/sigencore/Arena.cpp index 4f72e96b..b0e5b060 100644 --- a/sigencore/Arena.cpp +++ b/sigencore/Arena.cpp @@ -300,10 +300,7 @@ void Sigencore::Arena::distributeWinnings() continue; Spoil spoil = m_spoils[player]; const int net = spoil.first - spoil.second; - if (net < 0) - player->takeMoney(-net); - else if (0 < net) - player->giveMoney(net); + player->giveMoney(net); } } |
