Skip to content

Commit

Permalink
fixed missing "
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom committed Aug 16, 2023
1 parent fbe650e commit 81adee4
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 @@ -28,6 +28,6 @@ if (!isNil{profileNamespace getVariable [QEGVAR(Cav,Insignia), nil];}) then {

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

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

_insignia
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 @@ -26,6 +26,6 @@ if (!isNil{ GETPRVAR(QEGVAR(Cav,Insignia), nil); }) then { // FIXME: GETPRVAR(QE

SETPRVAR(QEGVAR(Profile,Insignia), _insignia)

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

true

0 comments on commit 81adee4

Please sign in to comment.