mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
11 lines
310 B
C++
11 lines
310 B
C++
#include "FvFong.h"
|
|
#include "Darkitect.h"
|
|
#include "eMissionState.h"
|
|
|
|
void FvFong::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) {
|
|
if (missionID == 734 && missionState == eMissionState::READY_TO_COMPLETE) {
|
|
Darkitect Baron;
|
|
Baron.Reveal(self, target);
|
|
}
|
|
}
|