diff options
Diffstat (limited to 'Minecraft.World/ClientCommandPacket.cpp')
| -rw-r--r-- | Minecraft.World/ClientCommandPacket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/ClientCommandPacket.cpp b/Minecraft.World/ClientCommandPacket.cpp index 4245fc3f..15aaefd0 100644 --- a/Minecraft.World/ClientCommandPacket.cpp +++ b/Minecraft.World/ClientCommandPacket.cpp @@ -24,7 +24,7 @@ void ClientCommandPacket::write(DataOutputStream *dos) void ClientCommandPacket::handle(PacketListener *listener) { - listener->handleClientCommand(dynamic_pointer_cast<ClientCommandPacket>(shared_from_this())); + listener->handleClientCommand(std::dynamic_pointer_cast<ClientCommandPacket>(shared_from_this())); } int ClientCommandPacket::getEstimatedSize() |
