diff options
Diffstat (limited to 'Minecraft.World/TileEntityDataPacket.h')
| -rw-r--r-- | Minecraft.World/TileEntityDataPacket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/TileEntityDataPacket.h b/Minecraft.World/TileEntityDataPacket.h index 2ee998f3..522392ed 100644 --- a/Minecraft.World/TileEntityDataPacket.h +++ b/Minecraft.World/TileEntityDataPacket.h @@ -31,6 +31,6 @@ public: virtual int getEstimatedSize(); public: - static shared_ptr<Packet> create() { return shared_ptr<Packet>(new TileEntityDataPacket()); } + static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new TileEntityDataPacket()); } virtual int getId() { return 132; } };
\ No newline at end of file |
