DarkflameServer/dScripts/NtDarkitectRevealServer.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
370 B
C++
Raw Normal View History

#include "NtDarkitectRevealServer.h"
#include "Darkitect.h"
#include "MissionComponent.h"
void NtDarkitectRevealServer::OnUse(Entity* self, Entity* user) {
Darkitect Baron;
Baron.Reveal(self, user);
auto* missionComponent = user->GetComponent<MissionComponent>();
if (missionComponent != nullptr) {
missionComponent->ForceProgressTaskType(1344, 1, 14293);
}
}