mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
763a1f4a61
add reveal to Fong
17 lines
371 B
C++
17 lines
371 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);
|
|
}
|
|
}
|