From 37f690e20547ffcd5dd8b9c7000eed0f4fa15932 Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Sat, 23 Nov 2019 18:40:07 +0000 Subject: [PATCH] Fixed dead monsters with remaining HP bar. --- .../java/org/l2jmobius/gameserver/model/actor/Creature.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/L2J_Mobius_C1_HarbingersOfWar/java/org/l2jmobius/gameserver/model/actor/Creature.java b/L2J_Mobius_C1_HarbingersOfWar/java/org/l2jmobius/gameserver/model/actor/Creature.java index c6ad771d92..56fd1ef566 100644 --- a/L2J_Mobius_C1_HarbingersOfWar/java/org/l2jmobius/gameserver/model/actor/Creature.java +++ b/L2J_Mobius_C1_HarbingersOfWar/java/org/l2jmobius/gameserver/model/actor/Creature.java @@ -819,6 +819,7 @@ public abstract class Creature extends WorldObject { _currentMoveTask.cancel(); } + broadcastStatusUpdate(); final StopMove stop = new StopMove(this); final Die die = new Die(this); broadcastPacket(stop); @@ -829,6 +830,7 @@ public abstract class Creature extends WorldObject { attacker.setTarget(null); } + return; } } broadcastStatusUpdate();