aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/EnchantmentTableTile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/EnchantmentTableTile.cpp')
-rw-r--r--Minecraft.World/EnchantmentTableTile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Minecraft.World/EnchantmentTableTile.cpp b/Minecraft.World/EnchantmentTableTile.cpp
index 911d19cd..70c127ba 100644
--- a/Minecraft.World/EnchantmentTableTile.cpp
+++ b/Minecraft.World/EnchantmentTableTile.cpp
@@ -67,12 +67,12 @@ Icon *EnchantmentTableTile::getTexture(int face, int data)
return icon;
}
-std::shared_ptr<TileEntity> EnchantmentTableTile::newTileEntity(Level *level)
+shared_ptr<TileEntity> EnchantmentTableTile::newTileEntity(Level *level)
{
- return std::shared_ptr<TileEntity>(new EnchantmentTableEntity());
+ return shared_ptr<TileEntity>(new EnchantmentTableEntity());
}
-bool EnchantmentTableTile::use(Level *level, int x, int y, int z, std::shared_ptr<Player> player, int clickedFace, float clickX, float clickY, float clickZ, bool soundOnly/*=false*/) // 4J added soundOnly param
+bool EnchantmentTableTile::use(Level *level, int x, int y, int z, shared_ptr<Player> player, int clickedFace, float clickX, float clickY, float clickZ, bool soundOnly/*=false*/) // 4J added soundOnly param
{
if(soundOnly) return false;