Skip to content

Commit

Permalink
gforces - Fix stat condition (#10601)
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkIsGrim authored Dec 26, 2024
1 parent e8ef0df commit 12b1938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/gforces/ACE_Arsenal_Stats.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class EGVAR(arsenal,stats) {
displayName = CSTRING(statGReduction);
showBar = 1;
barStatement = QUOTE([ARR_3((_this select 0) select 0,_this select 1,[ARR_3([ARR_2(1,0)],[ARR_2(0.01,1)],false)])] call EFUNC(arsenal,statBarStatement_default));
condition = QUOTE(getNumber (_this select 1 >> (_this select 0) select 0) > 0);
condition = QUOTE(getNumber (_this select 1 >> (_this select 0) select 0) < 1); // All uniforms should have this set to 1 by default
tabs[] = {{3}, {}};
};
};

0 comments on commit 12b1938

Please sign in to comment.