Add stackObjectCount for camora slots on weapons

This commit is contained in:
Dev 2023-07-24 21:44:00 +01:00
parent 777ca0c8ef
commit 4a491df965

View File

@ -587,6 +587,14 @@ export class BotWeaponGenerator
for (const camora of camoras)
{
camora._tpl = ammoTpl;
if (camora.upd)
{
camora.upd.StackObjectsCount = 1;
}
else
{
camora.upd = { StackObjectsCount: 1 };
}
}
}
}