2021-12-05 17:54:36 +00:00
|
|
|
#include "SsModularBuildServer.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include "MissionComponent.h"
|
|
|
|
#include "eMissionState.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void SsModularBuildServer::OnModularBuildExit(Entity* self, Entity* player, bool bCompleted, std::vector<LOT> modules) {
|
|
|
|
int missionNum = 1732;
|
|
|
|
|
|
|
|
if (bCompleted) {
|
2023-03-04 07:16:37 +00:00
|
|
|
MissionComponent* mission = static_cast<MissionComponent*>(player->GetComponent(eReplicaComponentType::MISSION));
|
2021-12-05 17:54:36 +00:00
|
|
|
Mission* rocketMission = mission->GetMission(missionNum);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
if (rocketMission->GetMissionState() == eMissionState::ACTIVE) {
|
|
|
|
mission->ForceProgress(missionNum, 2478, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|