From 63b04045f275a1c5b9886971252184dd86911167 Mon Sep 17 00:00:00 2001 From: obligaron Date: Sat, 4 Mar 2023 12:32:31 +0100 Subject: [PATCH] MP: Send delta message for lachdanans death --- Source/monster.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/monster.cpp b/Source/monster.cpp index f68d31c3c..5502afa82 100644 --- a/Source/monster.cpp +++ b/Source/monster.cpp @@ -2885,8 +2885,10 @@ void LachdananAi(Monster &monster) if (!effect_is_playing(USFX_LACH3) && monster.goal == MonsterGoal::Talking) { monster.talkMsg = TEXT_NONE; Quests[Q_VEIL]._qactive = QUEST_DONE; - MonsterDeath(monster, monster.direction, true); NetSendCmdQuest(true, Quests[Q_VEIL]); + MonsterDeath(monster, monster.direction, true); + delta_kill_monster(monster, monster.position.tile, *MyPlayer); + NetSendCmdLocParam1(false, CMD_MONSTDEATH, monster.position.tile, monster.getId()); } } }