diff options
Diffstat (limited to 'Minecraft.World/Snowball.cpp')
| -rw-r--r-- | Minecraft.World/Snowball.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/Snowball.cpp b/Minecraft.World/Snowball.cpp index 37983a68..84c341bc 100644 --- a/Minecraft.World/Snowball.cpp +++ b/Minecraft.World/Snowball.cpp @@ -34,7 +34,7 @@ void Snowball::onHit(HitResult *res) if (res->entity != NULL) { int damage = 0; - if (dynamic_pointer_cast<Blaze>(res->entity) != NULL) + if (std::dynamic_pointer_cast<Blaze>(res->entity) != NULL) { damage = 3; } |
