aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Skeleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/Skeleton.h')
-rw-r--r--Minecraft.World/Skeleton.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/Skeleton.h b/Minecraft.World/Skeleton.h
index b85d9afe..d5760e9a 100644
--- a/Minecraft.World/Skeleton.h
+++ b/Minecraft.World/Skeleton.h
@@ -20,7 +20,7 @@ protected:
virtual int getDeathSound();
public:
- virtual shared_ptr<ItemInstance> getCarriedItem();
+ virtual std::shared_ptr<ItemInstance> getCarriedItem();
virtual MobType getMobType();
virtual void aiStep();
virtual void die(DamageSource *source);
@@ -31,7 +31,7 @@ protected:
virtual void dropRareDeathLoot(int rareLootLevel);
private:
- static shared_ptr<ItemInstance> bow;
+ static std::shared_ptr<ItemInstance> bow;
public: