1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 13:15:32 +00:00

Implement UnequipItem() script function

This commit is contained in:
David Cernat 2016-11-18 01:50:55 +02:00
parent c1bd4f1ce3
commit 7f25abb9c8
2 changed files with 8 additions and 2 deletions

View file

@ -36,8 +36,10 @@ void ItemFunctions::EquipItem(unsigned short pid, unsigned short slot, const cha
void ItemFunctions::UnequipItem(unsigned short pid, unsigned short slot) noexcept
{
LOG_MESSAGE(Log::LOG_WARN, "stub");
//ItemFunctions::EquipItem(pid, slot, "", 0);
Player *player;
GET_PLAYER(pid, player, );
ItemFunctions::EquipItem(pid, slot, "", 0, -1);
}
void ItemFunctions::AddItem(unsigned short pid, const char* itemName, unsigned int count, int health) noexcept

View file

@ -794,6 +794,10 @@ void LocalPlayer::setEquipment()
else
ptrInventory.equip(slot, it, ptrPlayer);
}
else
{
ptrInventory.unequipSlot(slot, ptrPlayer);
}
}
}