mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
16 lines
496 B
C++
16 lines
496 B
C++
|
#include "AgMonumentRaceGoal.h"
|
||
|
#include "EntityManager.h"
|
||
|
|
||
|
|
||
|
void AgMonumentRaceGoal::OnStartup(Entity* self) {
|
||
|
self->SetProximityRadius(15, "RaceGoal");
|
||
|
}
|
||
|
|
||
|
void AgMonumentRaceGoal::OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) {
|
||
|
if (name == "RaceGoal" && entering->IsPlayer() && status == "ENTER") {
|
||
|
auto* manager = EntityManager::Instance()->GetEntitiesInGroup("race_manager")[0];
|
||
|
|
||
|
manager->OnFireEventServerSide(entering, "course_finish");
|
||
|
}
|
||
|
}
|