From 026eda3ff10c282df8e35caf5f7faaeee9ff50d5 Mon Sep 17 00:00:00 2001 From: Cekis Date: Tue, 27 Dec 2016 21:26:29 +0000 Subject: [PATCH] Moved Elite Storyteller vendor in the Bestine hotel. --- .../script/systems/event_perk/promoter_hotel_spawner.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sku.0/sys.server/compiled/game/script/systems/event_perk/promoter_hotel_spawner.java b/sku.0/sys.server/compiled/game/script/systems/event_perk/promoter_hotel_spawner.java index 65b6c0d3c..88101f8ae 100755 --- a/sku.0/sys.server/compiled/game/script/systems/event_perk/promoter_hotel_spawner.java +++ b/sku.0/sys.server/compiled/game/script/systems/event_perk/promoter_hotel_spawner.java @@ -28,8 +28,8 @@ public class promoter_hotel_spawner extends script.base_script return SCRIPT_CONTINUE; } // there's a special NPC (Zekka Thyne) in the Coronet hotel so avoid spawning the promoter on top of him. - // there's also Pex (an elite storyteller vendor) in the Theed hotel so avoid spawning the promoter on top of him too. - if(myCity != null && (myCity.equals("coronet") || myCity.equals("narmle") || myCity.equals("theed"))) { + // there's also Pex (an elite storyteller vendor) in the Theed and Bestine hotels so avoid spawning the promoter on top of him too. + if(myCity != null && (myCity.equals("coronet") || myCity.equals("narmle") || myCity.equals("theed") || myCity.equals("bestine"))) { spawnPoint.x = -25.3f; spawnPoint.y = 1.6f; spawnPoint.z = -5.5f;