mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
0545adfac3
Have fun!
13 lines
422 B
C++
13 lines
422 B
C++
#include "NjEarthPetServer.h"
|
|
#include "PetComponent.h"
|
|
|
|
void NjEarthPetServer::OnStartup(Entity *self) {
|
|
auto* petComponent = self->GetComponent<PetComponent>();
|
|
if (petComponent == nullptr || petComponent->GetOwnerId() != LWOOBJID_EMPTY)
|
|
return;
|
|
|
|
// Removes the chocolate bars
|
|
petComponent->SetPreconditions(const_cast<std::string &>(m_Precondition));
|
|
PetFromObjectServer::OnStartup(self);
|
|
}
|