Add armorColliders type

This commit is contained in:
Dev 2023-12-28 21:39:46 +00:00
parent e27f52c505
commit 8e2ad5697e
2 changed files with 1 additions and 3 deletions

View File

@ -826,8 +826,6 @@ export class LocationGenerator
|| this.itemHelper.isOfBaseclass(chosenTpl, BaseClasses.AMMO) || this.itemHelper.isOfBaseclass(chosenTpl, BaseClasses.AMMO)
) )
{ {
const stackCount = itemTemplate._props.StackMaxSize === 1 const stackCount = itemTemplate._props.StackMaxSize === 1
? 1 ? 1
: this.randomUtil.getInt(itemTemplate._props.StackMinRandom, itemTemplate._props.StackMaxRandom); : this.randomUtil.getInt(itemTemplate._props.StackMinRandom, itemTemplate._props.StackMaxRandom);

View File

@ -463,7 +463,7 @@ export interface SlotFilter
{ {
Shift?: number; Shift?: number;
locked?: boolean; locked?: boolean;
armorColliders?: any[]; armorColliders?: string[];
armorPlateColliders?: string[]; armorPlateColliders?: string[];
Filter: string[]; Filter: string[];
AnimationIndex?: number; AnimationIndex?: number;