Revert "shared_ptr -> std::shared_ptr"

This reverts commit 7074f35e4b.
This commit is contained in:
void_17
2026-03-02 17:37:16 +07:00
parent 8a2a62ea1d
commit 119bff3514
1373 changed files with 12049 additions and 12049 deletions

View File

@@ -66,7 +66,7 @@ void RemotePlayer::tick()
if (!hasStartedUsingItem && isUsingItemFlag() && inventory->items[inventory->selected] != NULL)
{
std::shared_ptr<ItemInstance> item = inventory->items[inventory->selected];
shared_ptr<ItemInstance> item = inventory->items[inventory->selected];
startUsingItem(inventory->items[inventory->selected], Item::items[item->id]->getUseDuration(item));
hasStartedUsingItem = true;
}
@@ -129,7 +129,7 @@ void RemotePlayer::aiStep()
}
// 4J Stu - Brought forward change from 1.3 to fix #64688 - Customer Encountered: TU7: Content: Art: Aura of enchanted item is not displayed for other players in online game
void RemotePlayer::setEquippedSlot(int slot, std::shared_ptr<ItemInstance> item)
void RemotePlayer::setEquippedSlot(int slot, shared_ptr<ItemInstance> item)
{
if (slot == 0)
{