class and table schema now conform to JSON

This commit is contained in:
2023-09-20 15:53:41 -04:00
parent 46b3db033b
commit e0387dce00
40 changed files with 132 additions and 133 deletions
@@ -31,9 +31,9 @@ public class SetForceRenameCityCmd extends AbstractDevCmd {
if (zone == null)
return;
boolean rename = words[0].equalsIgnoreCase("true") ? true : false;
if (zone.playerCityID == 0)
if (zone.playerCityUUID == 0)
return;
City city = City.getCity(zone.playerCityID);
City city = City.getCity(zone.playerCityUUID);
if (city == null)
return;
city.setForceRename(rename);