city_rally_point_receive() city legality check reversed
city_rally_point_receive():
if (NULL != pcity) { /* Probably lost. */ ... return;
The check should be "pcity == NULL"
city_rally_point_receive():
if (NULL != pcity) {
/* Probably lost. */
...
return;
The check should be "pcity == NULL"