<URL: http://bugs.freeciv.org/Ticket/Display.html?id=39756 >
Patch attached.
--- server/srv_main.c.old 2007-10-07 14:31:33.000000000 +0200
+++ server/srv_main.c 2007-10-07 14:33:36.000000000 +0200
@@ -1515,6 +1515,9 @@
conn_list_iterate(game.game_connections, pconn) {
if (has_capability("ReportFreezeFix", pconn->capability)) {
send_packet_freeze_client(pconn);
+ } else {
+ /* Keep compatibility for old clients updates */
+ send_packet_freeze_hint(pconn);
}
} conn_list_iterate_end;
}
@@ -1527,6 +1530,9 @@
conn_list_iterate(game.game_connections, pconn) {
if (has_capability("ReportFreezeFix", pconn->capability)) {
send_packet_thaw_client(pconn);
+ } else {
+ /* Keep compatibility for old clients updates */
+ send_packet_thaw_hint(pconn);
}
} conn_list_iterate_end;
}
_______________________________________________
Freeciv-dev mailing list
[email protected]
https://mail.gna.org/listinfo/freeciv-dev