[bug+fix?] Changing player while dragging
When you change the player (shift+P) while you are dragging with the waybuilder, there remains some leftovers on the map.
Fix:
Index: simworld.cc
===================================================================
--- simworld.cc (revision 2821)
+++ simworld.cc (working copy)
@@ -4836,6 +4836,9 @@
}
}
else {
+ // Exit the tool in order to get rid of leftovers.
+ werkzeug[active_player_nr]->exit( this, active_player );
+
renew_menu = (active_player_nr==1 || new_player==1);
active_player_nr = new_player;
active_player = spieler[new_player];
However, I'm not sure, if it causes the right behaviour in a network game...