Skip to content

Commit

Permalink
Merge pull request #1229 from CBATeam/fix-supportMonitor-includeDisab…
Browse files Browse the repository at this point in the history
…led-flag

fix includeDisabled flag in CBA_fnc_supportMonitor
  • Loading branch information
commy2 committed Sep 17, 2019
2 parents fae207c + 68d0054 commit 61f376d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/xeh/fnc_supportMonitor.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private _notSupportingClasses = [];

{
if (_classFilter == "" || {configName _x isKindOf _classFilter}) then {
if (!isClass (_x >> "EventHandlers" >> QUOTE(XEH_CLASS))) then {
if (!isText (_x >> "EventHandlers" >> QUOTE(XEH_CLASS) >> "init")) then {
// don't list duplicates
if (!_includeDuplicates && {{configName _x == "EventHandlers"} count configProperties [_x, "isClass _x", false] == 0}) exitWith {};

Expand Down

0 comments on commit 61f376d

Please sign in to comment.