Files
DarkflameServer/dScripts/02_server/DLU/RegisterWithZoneControl.cpp
David Markowitz 26f388eaed feat: implement a bunch of basic scripts that don't really do anything
None of these do anything noticeable or break anything
2026-06-16 00:55:56 -07:00

9 lines
288 B
C++

#include "RegisterWithZoneControl.h"
void RegisterWithZoneControl::OnStartup(Entity* self) {
GameMessages::ObjectLoaded objLoaded;
objLoaded.objectID = self->GetObjectID();
objLoaded.lot = self->GetLOT();
objLoaded.Send(Game::entityManager->GetZoneControlEntity()->GetObjectID());
}