duplicated zone loading disabled

This commit is contained in:
2024-06-11 19:33:29 -05:00
parent 7e27838818
commit fe0c0f97a5
@@ -32,6 +32,9 @@ public class dbCityHandler extends dbHandlerBase {
String type = rs.getString("type");
switch (type) {
case "zone":
if(rs.getInt("canLoad") == 0){
return;
}
Zone zone = new Zone(rs);
DbManager.addToCache(zone);
list.add(zone);