DarkflameServer/dScripts/NjEarthPetServer.cpp

13 lines
400 B
C++
Raw Normal View History

#include "NjEarthPetServer.h"
#include "PetComponent.h"
2022-07-28 13:39:57 +00:00
void NjEarthPetServer::OnStartup(Entity* self) {
auto* petComponent = self->GetComponent<PetComponent>();
if (petComponent == nullptr || petComponent->GetOwnerId() != LWOOBJID_EMPTY)
return;
2022-07-28 13:39:57 +00:00
// Removes the chocolate bars
petComponent->SetPreconditions(const_cast<std::string&>(m_Precondition));
PetFromObjectServer::OnStartup(self);
}