From b0fae6743e6760765b95769e80452075eee1e623 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Thu, 7 Feb 2019 03:45:00 +0000 Subject: [PATCH] Mystic tavern NPC check is not needed for Ertheia. --- .../java/com/l2jmobius/gameserver/model/actor/L2Npc.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/actor/L2Npc.java b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/actor/L2Npc.java index cd3d9b3577..a072613888 100644 --- a/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/actor/L2Npc.java +++ b/L2J_Mobius_1.0_Ertheia/java/com/l2jmobius/gameserver/model/actor/L2Npc.java @@ -505,7 +505,7 @@ public class L2Npc extends L2Character { return false; } - else if (player.isSitting() && (getId() != 34200)) // Mystic Tavern Globe requires player sitting + else if (player.isSitting()) { return false; }