diff --git a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/actor/Player.java b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/actor/Player.java index c45d944575..8b20ebb22f 100644 --- a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/actor/Player.java +++ b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/actor/Player.java @@ -6106,6 +6106,7 @@ public class Player extends Playable } // Add karma to attacker and increase its PK counter + setKarma(newKarma); setPkKills(getPkKills() + 1); if (Config.PVP_PK_TITLE) @@ -6119,6 +6120,9 @@ public class Player extends Playable // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); + + // Prevent character get stuck. + sendPacket(ActionFailed.STATIC_PACKET); } /** diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/Player.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/Player.java index afbe88b3b8..80d6b7611b 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/Player.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/Player.java @@ -6245,6 +6245,7 @@ public class Player extends Playable } // Add karma to attacker and increase its PK counter + setKarma(newKarma); setPkKills(getPkKills() + 1); if (Config.PVP_PK_TITLE) @@ -6258,6 +6259,9 @@ public class Player extends Playable // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); + + // Prevent character get stuck. + sendPacket(ActionFailed.STATIC_PACKET); } /**