Noob island filter at 20

This commit is contained in:
2024-06-19 17:57:28 -04:00
parent 9f6710ccb9
commit 695a78b1e2
+5 -2
View File
@@ -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;
}