mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
763a1f4a61
add reveal to Fong
13 lines
326 B
C++
13 lines
326 B
C++
#include "FvFong.h"
|
|
#include "Darkitect.h"
|
|
#include "MissionComponent.h"
|
|
|
|
void FvFong::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, MissionState missionState)
|
|
{
|
|
if (missionID == 734 && missionState == MissionState::MISSION_STATE_READY_TO_COMPLETE)
|
|
{
|
|
Darkitect Baron;
|
|
Baron.Reveal(self, target);
|
|
}
|
|
}
|