mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 06:53:52 +00:00
Use container ID in Equip command warning
This commit is contained in:
parent
372697489b
commit
ce78a34010
1 changed files with 3 additions and 2 deletions
|
@ -192,8 +192,9 @@ namespace MWScript
|
|||
if (it == invStore.end())
|
||||
{
|
||||
it = ptr.getClass().getContainerStore (ptr).add (item, 1, ptr);
|
||||
Log(Debug::Warning) << "Implicitly adding one " << item << " to container "
|
||||
"to fulfil requirements of Equip instruction";
|
||||
Log(Debug::Warning) << "Implicitly adding one " << item <<
|
||||
" to the inventory store of " << ptr.getCellRef().getRefId() <<
|
||||
" to fulfill the requirements of Equip instruction";
|
||||
}
|
||||
|
||||
if (ptr == MWMechanics::getPlayer())
|
||||
|
|
Loading…
Reference in a new issue