Skip to content

Commit

Permalink
Merge pull request #205 from gruppe-adler/improve_creating_base_class
Browse files Browse the repository at this point in the history
Improve creating base class
  • Loading branch information
AdlerSalbei authored Jun 28, 2022
2 parents 4eeef29 + 39f96ef commit c701e4e
Show file tree
Hide file tree
Showing 9 changed files with 425 additions and 126 deletions.
1 change: 1 addition & 0 deletions addons/getLoadoutsFromUnits/XEH_PREP.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ PREP(getLoadoutAndFormat);
PREP(getWeapon);
PREP(onBtnOk);
PREP(onLoad);
PREP(returnBaseItem);
PREP(vanillaCivDefactionizer);
PREP(vanillaMilitaryDefactionizer);
4 changes: 2 additions & 2 deletions addons/getLoadoutsFromUnits/functions/fnc_convertToString.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
params ["_tabs", "_item", "_type"];

private _return = nil;
if (_item isEqualType "") then {
if (!isNil "_item" && {_item isEqualType ""}) then {
_return = _tabs + format ["%1 = ""%2"";", _type, _item];
};

_return
_return
Loading

0 comments on commit c701e4e

Please sign in to comment.