Skip to content

Commit

Permalink
Remove fixme
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom committed Aug 16, 2023
1 parent 81adee4 commit 2e4c0b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cScripts/functions/players/fn_profile_loadInsignia.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if (!isNil{profileNamespace getVariable [QEGVAR(Cav,Insignia), nil];}) then {
profileNamespace setVariable [QEGVAR(Cav,Insignia), nil];
};

private _insignia = GETPRVAR(QEGVAR(Profile,Insignia), ""); // FIXME: GETPRVAR(QEGVAR(Cav,Insignia) is considerd one ) less
private _insignia = GETPRVAR(QEGVAR(Profile,Insignia), "");

INFO_2("PlayerProfile", "%1 insignia '%2' obtained on profile variable...", player, _insignia);

Expand Down
2 changes: 1 addition & 1 deletion cScripts/functions/players/fn_profile_saveInsignia.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ params [["_insignia", "", [""]]];
if (!GVAR(isPlayer)) exitWith {};

// TODO: Legacy handler, remove later
if (!isNil{ GETPRVAR(QEGVAR(Cav,Insignia), nil); }) then { // FIXME: GETPRVAR(QEGVAR(Cav,Insignia) is considerd one ) less
if (!isNil{ GETPRVAR(QEGVAR(Cav,Insignia), nil); }) then {
SETPRVAR(QEGVAR(Cav,Insignia), nil);
};

Expand Down

0 comments on commit 2e4c0b0

Please sign in to comment.