Skip to content

Commit

Permalink
fixed ItemRadioAcreFlagged showing up in loadout briefing
Browse files Browse the repository at this point in the history
  • Loading branch information
G3rrus committed Mar 18, 2019
1 parent d431fe4 commit 32a3f01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LMF_R.VR/framework/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
] call CBA_Settings_fnc_init;

//FRAMEWORK VERSION
var_version = 1.04;
var_version = 1.05;
2 changes: 1 addition & 1 deletion LMF_R.VR/framework/player/fn_loadoutBriefing.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ _textToDisplay = _textToDisplay + format ["<font face='PuristaBold' color='#A3FF
_textToDisplay = _textToDisplay + ([_name, [32,32], _cfgType] call _getPicture) + format ["<execute expression='systemChat ""%2""'>x%1</execute> ", _itemCount, _displayName];
_items = _items - [_name];
};
} forEach [[_radios, "CfgWeapons"], [_allMags, "CfgMagazines"], [_allItems, "CfgWeapons"], [assignedItems player, "CfgWeapons"]];
} forEach [[_radios, "CfgWeapons"], [_allMags, "CfgMagazines"], [_allItems, "CfgWeapons"], [(assignedItems player) - ["ItemRadioAcreFlagged"], "CfgWeapons"]];

//FINISH IT OFF WITH WARNING ABOUT ACCURACY
_textToDisplay = _textToDisplay + "<br/><br/></font><font color='#D7DBD5'>This page is only accurate at mission start.</font>";
Expand Down

0 comments on commit 32a3f01

Please sign in to comment.