Revert "NULL to nullptr"

This reverts commit 4b4b20a84b.
This commit is contained in:
GabsPuNs
2026-03-21 00:04:26 -04:00
parent 0d0ca31dfc
commit 180b4a117b
69 changed files with 4178 additions and 4176 deletions

View File

@@ -16,7 +16,7 @@ SetRidingPacket::SetRidingPacket()
SetRidingPacket::SetRidingPacket(shared_ptr<Entity> rider, shared_ptr<Entity> riding)
{
this->riderId = rider->entityId;
this->riddenId = riding != nullptr ? riding->entityId : -1;
this->riddenId = riding != NULL ? riding->entityId : -1;
}
int SetRidingPacket::getEstimatedSize()