Skip to content
Snippets Groups Projects
Commit 6b15ef81 authored by BiggBoss's avatar BiggBoss
Browse files

[4916

parent c3bb747d
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
*/ */
package handlers.actionhandlers; package handlers.actionhandlers;
import com.l2jserver.Config;
import com.l2jserver.gameserver.ai.CtrlIntention; import com.l2jserver.gameserver.ai.CtrlIntention;
import com.l2jserver.gameserver.handler.IActionHandler; import com.l2jserver.gameserver.handler.IActionHandler;
import com.l2jserver.gameserver.model.L2Object; import com.l2jserver.gameserver.model.L2Object;
...@@ -140,6 +141,10 @@ public class L2NpcAction implements IActionHandler ...@@ -140,6 +141,10 @@ public class L2NpcAction implements IActionHandler
else else
((L2Npc)target).showChatWindow(activeChar); ((L2Npc)target).showChatWindow(activeChar);
} }
if(Config.PLAYER_MOVEMENT_BLOCK_TIME > 0
&& !activeChar.isGM())
activeChar.updateNotMoveUntil();
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment