diff --git a/Server/data/configs/npc_spawns.json b/Server/data/configs/npc_spawns.json index fbb2bdf6b..3c78c4c44 100644 --- a/Server/data/configs/npc_spawns.json +++ b/Server/data/configs/npc_spawns.json @@ -249,7 +249,7 @@ }, { "npc_id": "81", - "loc_data": "{3255,3255,0,1,3}-{3255,3256,0,1,4}-{3038,3310,0,1,5}-{3028,3312,0,1,6}-{3028,3299,0,1,6}-{3042,3300,0,1,6}-{2923,3277,0,1,1}-{2921,3289,0,1,1}-{2923,3280,0,1,6}-{2589,3120,0,1,4}-{2605,3116,0,1,5}-{3259,3261,0,1,1}-{3263,3283,0,1,6}-{3257,3268,0,1,4}" + "loc_data": "{2436,4443,0,0,3}-{2441,4449,0,0,6}-{3255,3255,0,1,3}-{3255,3256,0,1,4}-{3038,3310,0,1,5}-{3028,3312,0,1,6}-{3028,3299,0,1,6}-{3042,3300,0,1,6}-{2923,3277,0,1,1}-{2921,3289,0,1,1}-{2923,3280,0,1,6}-{2589,3120,0,1,4}-{2605,3116,0,1,5}-{3259,3261,0,1,1}-{3263,3283,0,1,6}-{3257,3268,0,1,4}" }, { "npc_id": "82", @@ -2113,7 +2113,7 @@ }, { "npc_id": "791", - "loc_data": "{2450,3056,0,0,0}" + "loc_data": "" }, { "npc_id": "792", diff --git a/Server/src/main/content/global/handlers/item/LampPlugin.java b/Server/src/main/content/global/handlers/item/LampPlugin.java index 5e5b70f34..1ad518ffd 100644 --- a/Server/src/main/content/global/handlers/item/LampPlugin.java +++ b/Server/src/main/content/global/handlers/item/LampPlugin.java @@ -43,7 +43,7 @@ public final class LampPlugin extends OptionHandler { public void handleSelectionCallback(int skill, Player player){ Lamps lamp = Lamps.forItem(player.getAttribute("lamp",new Item(2528))); if(player.getSkills().getStaticLevel(skill) < lamp.getLevelRequirement()){ - player.sendMessage("Your need at least" + lamp.getLevelRequirement() + " " + Skills.SKILL_NAME[skill] + " to do this."); + player.sendMessage("You need at least " + lamp.getLevelRequirement() + " " + Skills.SKILL_NAME[skill] + " to do this."); return; } else { if(player.getInventory().remove((Item) player.getAttribute("lamp"))) { diff --git a/Server/src/main/content/region/misthalin/wiztower/dialogue/DrOnglewipDialogue.java b/Server/src/main/content/region/misthalin/wiztower/dialogue/DrOnglewipDialogue.java index 85afb3a6c..75b08b020 100644 --- a/Server/src/main/content/region/misthalin/wiztower/dialogue/DrOnglewipDialogue.java +++ b/Server/src/main/content/region/misthalin/wiztower/dialogue/DrOnglewipDialogue.java @@ -39,7 +39,7 @@ public final class DrOnglewipDialogue extends DialoguePlugin { @Override public boolean open(Object... args) { npc = (NPC) args[0]; - interpreter.sendDialogues(player, FacialExpression.NEUTRAL, "Do you live here too?"); + interpreter.sendDialogues(player, FacialExpression.ASKING, "Do you live here too?"); stage = 0; return true; }