mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-17 09:08:59 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -19,7 +19,7 @@ SetEquippedItemPacket::SetEquippedItemPacket(
|
||||
// 4J Stu - Brought forward change from 1.3 to fix #64688 - Customer
|
||||
// Encountered: TU7: Content: Art: Aura of enchanted item is not displayed
|
||||
// for other players in online game
|
||||
this->item = item == NULL ? nullptr : item->copy();
|
||||
this->item = item == nullptr ? nullptr : item->copy();
|
||||
}
|
||||
|
||||
void SetEquippedItemPacket::read(DataInputStream* dis) // throws IOException
|
||||
|
||||
Reference in New Issue
Block a user