Incldue m4a1 with gas block item in modIsFrontOrRearSight() check

This commit is contained in:
Dev 2023-10-17 20:45:40 +01:00
parent 99cb77d3cf
commit 480967ab9a

View File

@ -260,7 +260,7 @@ export class BotEquipmentModGenerator
} }
// If front/rear sight are to be added, set opposite to 100% chance // If front/rear sight are to be added, set opposite to 100% chance
if (this.modIsFrontOrRearSight(modSlot)) if (this.modIsFrontOrRearSight(modSlot, modToAddTemplate._id))
{ {
modSpawnChances.mod_sight_front = 100; modSpawnChances.mod_sight_front = 100;
modSpawnChances.mod_sight_rear = 100; modSpawnChances.mod_sight_rear = 100;
@ -317,8 +317,13 @@ export class BotEquipmentModGenerator
* @param modSlot Slot to check * @param modSlot Slot to check
* @returns true if it's a front/rear sight * @returns true if it's a front/rear sight
*/ */
protected modIsFrontOrRearSight(modSlot: string): boolean protected modIsFrontOrRearSight(modSlot: string, tpl: string): boolean
{ {
if (modSlot === "mod_gas_block" && tpl === "5ae30e795acfc408fb139a0b") // M4A1 front sight with gas block
{
return true;
}
return ["mod_sight_front", "mod_sight_rear"].includes(modSlot); return ["mod_sight_front", "mod_sight_rear"].includes(modSlot);
} }