DarkflameServer/dScripts/02_server/Map/njhub/NjEarthPetServer.cpp
David Markowitz e2dfa1809d Replace all auto with auto*
For components
2023-06-09 01:27:05 -07:00

13 lines
400 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);
}