fix: include saiga 10rnd

This commit is contained in:
Platinum 2023-06-12 07:53:30 +10:00
parent 3dc7355714
commit 4733c225e2
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{
"minMagazineCapacityToBeIncluded": 40,
"minMagazineCapacityToBeIncluded": 10,
"maxMagazineCapacityToBeIncluded": 50
}

View File

@ -67,6 +67,7 @@ class TwoSlotExtendedMags implements IPostDBLoadMod {
return item._parent == magazineCategoryId &&
item._props.Width == 1 && // We don't want to make horizontal mags like P90's to be 4 squares wide or change drum mags (for now)
item._props.Height > 2 &&
this.isWithinMagazineSizeCapacity(item._props);
}