Author: jtn
Date: Mon May  1 11:28:36 2017
New Revision: 35332

URL: http://svn.gna.org/viewcvs/freeciv?rev=35332&view=rev
Log:
Fixed dead player scores not revealed on game over.
Reported by Daniel Markstedt (dmarks@gna).
Patch by mir3x@gna.

See gna bug #17248

Modified:
    branches/S2_5/server/report.c

Modified: branches/S2_5/server/report.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/server/report.c?rev=35332&r1=35331&r2=35332&view=diff
==============================================================================
--- branches/S2_5/server/report.c       (original)
+++ branches/S2_5/server/report.c       Mon May  1 11:28:36 2017
@@ -1504,7 +1504,7 @@
 
   i = 0;
   players_iterate(pplayer) {
-    if (GOOD_PLAYER(pplayer)) {
+    if (is_barbarian(pplayer) == FALSE) {
       size[i].value = pplayer->score.game;
       size[i].player = pplayer;
       i++;


_______________________________________________
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits

Reply via email to