DarkflameServer/dScripts/02_server/Map/NT/NtDarkitectRevealServer.cpp
David Markowitz e2dfa1809d Replace all auto with auto*
For components
2023-06-09 01:27:05 -07:00

15 lines
370 B
C++

#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);
}
}