fix: missed some dynamic_pointer_cast calls in Common

This commit is contained in:
Tropical
2026-03-06 22:30:39 -06:00
committed by JuiceyDev
parent 66248339e5
commit a4592c5f82
11 changed files with 20 additions and 20 deletions

View File

@@ -62,7 +62,7 @@ int DiggerItemHint::attack(std::shared_ptr<ItemInstance> item, std::shared_ptr<E
if(itemFound)
{
// It's also possible that we could hit TileEntities (eg falling sand) so don't want to give this hint then
if( dynamic_pointer_cast<Mob>( entity ) != NULL )
if( std::dynamic_pointer_cast<Mob>( entity ) != NULL )
{
return IDS_TUTORIAL_HINT_ATTACK_WITH_TOOL;
}