diff options
Diffstat (limited to 'Minecraft.World/RotateHeadPacket.cpp')
| -rw-r--r-- | Minecraft.World/RotateHeadPacket.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/RotateHeadPacket.cpp b/Minecraft.World/RotateHeadPacket.cpp index 46d48a99..a0cd02d7 100644 --- a/Minecraft.World/RotateHeadPacket.cpp +++ b/Minecraft.World/RotateHeadPacket.cpp @@ -39,9 +39,9 @@ bool RotateHeadPacket::canBeInvalidated() return true; } -bool RotateHeadPacket::isInvalidatedBy(std::shared_ptr<Packet> packet) +bool RotateHeadPacket::isInvalidatedBy(shared_ptr<Packet> packet) { - std::shared_ptr<RotateHeadPacket> target = dynamic_pointer_cast<RotateHeadPacket>(packet); + shared_ptr<RotateHeadPacket> target = dynamic_pointer_cast<RotateHeadPacket>(packet); return target->id == id; } |
