mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
8d37d9b681
* Organize dScripts whitespace Remove parent scope Remove parent scope from initial setter Remove debug Remove helper programs * Fix NtImagimeterVisibility script Co-authored-by: aronwk-aaron <aronwk.aaron@gmail.com>
14 lines
526 B
C++
14 lines
526 B
C++
#include "NtVandaServer.h"
|
|
#include "InventoryComponent.h"
|
|
|
|
void NtVandaServer::OnMissionDialogueOK(Entity* self, Entity* target, int missionID, MissionState missionState) {
|
|
|
|
// Removes the alien parts after completing the mission
|
|
if (missionID == m_AlienPartMissionID && missionState == MissionState::MISSION_STATE_READY_TO_COMPLETE) {
|
|
auto* inventoryComponent = target->GetComponent<InventoryComponent>();
|
|
for (const auto& alienPartLot : m_AlienPartLots) {
|
|
inventoryComponent->RemoveItem(alienPartLot, 1);
|
|
}
|
|
}
|
|
}
|