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