2021-12-05 17:54:36 +00:00
|
|
|
#include "NsJohnnyMissionServer.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include "MissionComponent.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void NsJohnnyMissionServer::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, MissionState missionState) {
|
|
|
|
if (missionID == 773 && missionState <= MissionState::MISSION_STATE_ACTIVE) {
|
|
|
|
auto* missionComponent = target->GetComponent<MissionComponent>();
|
|
|
|
if (missionComponent != nullptr) {
|
|
|
|
missionComponent->AcceptMission(774);
|
|
|
|
missionComponent->AcceptMission(775);
|
|
|
|
missionComponent->AcceptMission(776);
|
|
|
|
missionComponent->AcceptMission(777);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|