2
0
_DS_ 15 жил өмнө
parent
commit
ade6132606

+ 2 - 1
L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance/L2MinionInstance.java

@@ -98,7 +98,8 @@ public class L2MinionInstance extends L2MonsterInstance
 	{
 		if (!super.doDie(killer))
 			return false;
-		_master.notifyMinionDied(this);
+		if (getLeader() != null)
+			getLeader().notifyMinionDied(this);
 		return true;
 	}