aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/SetTimePacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/SetTimePacket.h')
-rw-r--r--Minecraft.World/SetTimePacket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/SetTimePacket.h b/Minecraft.World/SetTimePacket.h
index b7d3e645..8074ce9e 100644
--- a/Minecraft.World/SetTimePacket.h
+++ b/Minecraft.World/SetTimePacket.h
@@ -16,10 +16,10 @@ 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);
virtual bool isAync();
public:
- static shared_ptr<Packet> create() { return shared_ptr<Packet>(new SetTimePacket()); }
+ static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new SetTimePacket()); }
virtual int getId() { return 4; }
}; \ No newline at end of file