aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/UpdateMobEffectPacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/UpdateMobEffectPacket.h')
-rw-r--r--Minecraft.World/UpdateMobEffectPacket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/UpdateMobEffectPacket.h b/Minecraft.World/UpdateMobEffectPacket.h
index d17d1be4..a69d32b2 100644
--- a/Minecraft.World/UpdateMobEffectPacket.h
+++ b/Minecraft.World/UpdateMobEffectPacket.h
@@ -20,9 +20,9 @@ public:
virtual void handle(PacketListener *listener);
virtual int getEstimatedSize();
virtual bool canBeInvalidated();
- virtual bool isInvalidatedBy(shared_ptr<Packet> packet);
+ virtual bool isInvalidatedBy(std::shared_ptr<Packet> packet);
public:
- static shared_ptr<Packet> create() { return shared_ptr<Packet>(new UpdateMobEffectPacket()); }
+ static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new UpdateMobEffectPacket()); }
virtual int getId() { return 41; }
}; \ No newline at end of file