duplicated zone loading disabled

This commit is contained in:
2024-06-11 19:40:14 -05:00
parent fe0c0f97a5
commit e98f9cf1f7
2 changed files with 7 additions and 4 deletions
@@ -32,9 +32,6 @@ 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);