aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/TileDestructionPacket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/TileDestructionPacket.cpp')
-rw-r--r--Minecraft.World/TileDestructionPacket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/TileDestructionPacket.cpp b/Minecraft.World/TileDestructionPacket.cpp
index 98aa4ad5..b47ba517 100644
--- a/Minecraft.World/TileDestructionPacket.cpp
+++ b/Minecraft.World/TileDestructionPacket.cpp
@@ -80,6 +80,6 @@ bool TileDestructionPacket::canBeInvalidated()
bool TileDestructionPacket::isInvalidatedBy(std::shared_ptr<Packet> packet)
{
- std::shared_ptr<TileDestructionPacket> target = dynamic_pointer_cast<TileDestructionPacket>(packet);
+ std::shared_ptr<TileDestructionPacket> target = std::dynamic_pointer_cast<TileDestructionPacket>(packet);
return target->id == id;
} \ No newline at end of file