Bug #1493 » 1493.patch
server/savegame/savemain.c | ||
---|---|---|
/* server */
|
||
#include "console.h"
|
||
#include "notify.h"
|
||
#include "plrhand.h"
|
||
/* server/savegame */
|
||
#include "savegame2.h"
|
||
... | ... | |
CALL_FUNC_EACH_AI(city_created, pcity);
|
||
CALL_PLR_AI_FUNC(city_got, pplayer, pplayer, pcity);
|
||
} city_list_iterate_end;
|
||
/* HR#1493 need this else Shift-home pressed (center view on capital)
|
||
doesn't work until turn end. */
|
||
if (!player_has_flag(pplayer, PLRF_AI)) {
|
||
update_capital(pplayer);
|
||
}
|
||
} players_iterate_end;
|
||
#ifdef DEBUG_TIMERS
|