aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/FishingRodItem.cpp
diff options
context:
space:
mode:
authorvoid_17 <heroerror3@gmail.com>2026-03-02 17:37:16 +0700
committervoid_17 <heroerror3@gmail.com>2026-03-02 17:37:16 +0700
commit119bff351450ea16ffda550b6e0f67379b29f708 (patch)
treed9f28714afd516bc2450f33b0a77c5e05ff4de90 /Minecraft.World/FishingRodItem.cpp
parent8a2a62ea1d47364f802cf9aae97668bc4a7007b5 (diff)
Revert "shared_ptr -> std::shared_ptr"
This reverts commit 7074f35e4ba831e358117842b99ee35b87f85ae5.
Diffstat (limited to 'Minecraft.World/FishingRodItem.cpp')
-rw-r--r--Minecraft.World/FishingRodItem.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/Minecraft.World/FishingRodItem.cpp b/Minecraft.World/FishingRodItem.cpp
index 418bc625..858005e0 100644
--- a/Minecraft.World/FishingRodItem.cpp
+++ b/Minecraft.World/FishingRodItem.cpp
@@ -22,33 +22,33 @@ FishingRodItem::FishingRodItem(int id) : Item(id)
emptyIcon = NULL;
}
-bool FishingRodItem::isHandEquipped()
+bool FishingRodItem::isHandEquipped()
{
return true;
}
-bool FishingRodItem::isMirroredArt()
+bool FishingRodItem::isMirroredArt()
{
return true;
}
-std::shared_ptr<ItemInstance> FishingRodItem::use(std::shared_ptr<ItemInstance> instance, Level *level, std::shared_ptr<Player> player)
+shared_ptr<ItemInstance> FishingRodItem::use(shared_ptr<ItemInstance> instance, Level *level, shared_ptr<Player> player)
{
- if (player->fishing != NULL)
+ if (player->fishing != NULL)
{
int dmg = player->fishing->retrieve();
instance->hurt(dmg, player);
player->swing();
- }
- else
+ }
+ else
{
level->playSound(player, eSoundType_RANDOM_BOW, 0.5f, 0.4f / (random->nextFloat() * 0.4f + 0.8f));
- if (!level->isClientSide)
+ if (!level->isClientSide)
{
// 4J Stu - Move the player->fishing out of the ctor as we cannot reference 'this'
- std::shared_ptr<FishingHook> hook = std::shared_ptr<FishingHook>( new FishingHook(level, player) );
+ shared_ptr<FishingHook> hook = shared_ptr<FishingHook>( new FishingHook(level, player) );
player->fishing = hook;
- level->addEntity( std::shared_ptr<FishingHook>( hook ) );
+ level->addEntity( shared_ptr<FishingHook>( hook ) );
}
player->swing();
}