Browse Source

MP: Send delta message for lachdanans death

pull/5861/head
obligaron 3 years ago committed by Anders Jenbo
parent
commit
63b04045f2
  1. 4
      Source/monster.cpp

4
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());
}
}
}

Loading…
Cancel
Save