1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-05-19 22:41:28 +00:00

Handle GetItemCount on references without a container store gracefully

This commit is contained in:
Evil Eye 2024-07-25 18:34:53 +02:00
parent 11c21c28bf
commit 63e1b0ee9d

View file

@ -189,11 +189,17 @@ namespace MWScript
public:
void execute(Interpreter::Runtime& runtime) override
{
MWWorld::Ptr ptr = R()(runtime);
MWWorld::Ptr ptr = R()(runtime, false);
ESM::RefId item = ESM::RefId::stringRefId(runtime.getStringLiteral(runtime[0].mInteger));
runtime.pop();
if (ptr.isEmpty() || (ptr.getType() != ESM::Container::sRecordId && !ptr.getClass().isActor()))
{
runtime.push(0);
return;
}
if (item == "gold_005" || item == "gold_010" || item == "gold_025" || item == "gold_100")
item = MWWorld::ContainerStore::sGoldId;