@@ -94,13 +94,13 @@ bool VerifyTownName(uint32 r, const Town
* several numbers may map to a single name. */
const char *buf = t->name;
if (buf == NULL) {
GetTownName(buf2, t, lastof(buf2));
buf = buf2;
}
if (strcmp(buf1, buf2) == 0) return false;
if (strcmp(buf1, buf) == 0) return false;
return true;
Status change: