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

@@ -54,7 +54,7 @@ void ServerConnection::stop()
for (unsigned int i = 0; i < pendingSnapshot.size(); i++)
{
shared_ptr<PendingConnection> uc = pendingSnapshot[i];
if (uc != nullptr && !uc->done)
if (uc != NULL && !uc->done)
{
uc->disconnect(DisconnectPacket::eDisconnect_Closed);
}
@@ -65,7 +65,7 @@ void ServerConnection::stop()
for (unsigned int i = 0; i < playerSnapshot.size(); i++)
{
shared_ptr<PlayerConnection> player = playerSnapshot[i];
if (player != nullptr && !player->done)
if (player != NULL && !player->done)
{
player->disconnect(DisconnectPacket::eDisconnect_Quitting);
}