Bug #1639 » 1639.patch
client/packhand.c | ||
---|---|---|
pcity->was_happy = packet->was_happy;
|
||
pcity->had_famine = packet->had_famine;
|
||
pcity->anarchy = packet->anarchy;
|
||
pcity->rapture = packet->rapture;
|
||
pcity->turn_founded = packet->turn_founded;
|
||
pcity->turn_last_built = packet->turn_last_built;
|
||
common/networking/packets.def | ||
---|---|---|
BOOL did_buy, did_sell, was_happy;
|
||
BOOL had_famine;
|
||
UINT16 anarchy;
|
||
UINT16 rapture;
|
||
BOOL diplomat_investigate;
|
||
UINT8 walls;
|
||
SINT8 city_image;
|
server/citytools.c | ||
---|---|---|
packet->was_happy = pcity->was_happy;
|
||
packet->had_famine = pcity->had_famine;
|
||
packet->anarchy = pcity->anarchy;
|
||
packet->rapture = pcity->rapture;
|
||
packet->walls = city_citywalls_gfx(pcity);
|
||
packet->style = pcity->style;
|
||
packet->city_image = get_city_bonus(pcity, EFT_CITY_IMAGE);
|