Fix blank remove attachment text M4, M240, L110

Some attachments were using incorrect string names.
This commit is contained in:
ebaydayz
2016-04-03 20:16:34 -04:00
parent e69364991c
commit 37277613c1
16 changed files with 46 additions and 49 deletions

View File

@@ -72,7 +72,7 @@ if (count AllowedVehiclesList == 0) then {
// Add 0-3 loots to vehicle using random loot groups
_num = floor(random 4);
_allCfgLoots = ["Trash","Trash","Consumable","Consumable","Generic","Generic","MedicalLow","MedicalLow","clothes","clothes","militaryclothes","specialclothes","tents","backpacks","Parts","pistols","AmmoCivilian"];
_allCfgLoots = ["Trash","Trash","Consumable","Consumable","Generic","Generic","MedicalLow","MedicalLow","clothes","tents","backpacks","Parts","pistols","AmmoCivilian"];
for "_x" from 1 to _num do {
_iClass = _allCfgLoots call BIS_fnc_selectRandom;