diff options
Diffstat (limited to 'Minecraft.World/ExplodePacket.h')
| -rw-r--r-- | Minecraft.World/ExplodePacket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/ExplodePacket.h b/Minecraft.World/ExplodePacket.h index caf77c77..d4d8b3f9 100644 --- a/Minecraft.World/ExplodePacket.h +++ b/Minecraft.World/ExplodePacket.h @@ -32,6 +32,6 @@ public: float getKnockbackZ(); public: - static shared_ptr<Packet> create() { return std::make_shared<ExplodePacket>(); } + static shared_ptr<Packet> create() { return shared_ptr<Packet>(new ExplodePacket()); } virtual int getId() { return 60; } };
\ No newline at end of file |
