|
|
|
@ -344,8 +344,11 @@ public class City extends AbstractWorldObject {
@@ -344,8 +344,11 @@ public class City extends AbstractWorldObject {
|
|
|
|
|
|
|
|
|
|
// Filter NPC cities
|
|
|
|
|
|
|
|
|
|
if (city.isNoobIsle == 1 && playerCharacter.level < 20) { |
|
|
|
|
cities.add(city); // everyone can go to noob island if they are under level 20
|
|
|
|
|
if (city.isNoobIsle == 1) { |
|
|
|
|
|
|
|
|
|
if (playerCharacter.level < 20) |
|
|
|
|
cities.add(city); // everyone can go to noob island if they are under level 20
|
|
|
|
|
|
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|