aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ContainerSetContentPacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/ContainerSetContentPacket.h')
-rw-r--r--Minecraft.World/ContainerSetContentPacket.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/ContainerSetContentPacket.h b/Minecraft.World/ContainerSetContentPacket.h
index 10315f58..8e2a3c5a 100644
--- a/Minecraft.World/ContainerSetContentPacket.h
+++ b/Minecraft.World/ContainerSetContentPacket.h
@@ -11,7 +11,7 @@ public:
ContainerSetContentPacket();
~ContainerSetContentPacket();
- ContainerSetContentPacket(int containerId, vector<shared_ptr<ItemInstance> > *newItems);
+ ContainerSetContentPacket(int containerId, vector<std::shared_ptr<ItemInstance> > *newItems);
virtual void read(DataInputStream *dis);
virtual void write(DataOutputStream *dos);
@@ -19,7 +19,7 @@ public:
virtual int getEstimatedSize();
public:
- static shared_ptr<Packet> create() { return shared_ptr<Packet>(new ContainerSetContentPacket()); }
+ static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new ContainerSetContentPacket()); }
virtual int getId() { return 104; }
};