Browse Source

Minor bug fix in 'RenX::Server::gameoverWhenEmpty'.

pull/3/head
Jessica James 9 years ago
parent
commit
91dbfcd100
  1. BIN
      Release/Plugins/RenX.Core.lib
  2. 2
      RenX.Core/RenX_Server.cpp

BIN
Release/Plugins/RenX.Core.lib

Binary file not shown.

2
RenX.Core/RenX_Server.cpp

@ -732,7 +732,7 @@ bool RenX::Server::gameoverStop()
void RenX::Server::gameoverWhenEmpty() void RenX::Server::gameoverWhenEmpty()
{ {
if (this->players.size() != this->bot_count) if (this->players.size() == this->bot_count)
this->gameover(); this->gameover();
else else
this->gameover_when_empty = true; this->gameover_when_empty = true;

Loading…
Cancel
Save