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