Skip to content

Commit

Permalink
fix animal gutting (#680)
Browse files Browse the repository at this point in the history
private keyword not allowed for _progress
  • Loading branch information
cryptearth authored May 26, 2020
1 parent 4b0735e commit ee0fbc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Altis_Life.Altis/core/actions/fn_gutAnimal.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private _ui = uiNamespace getVariable "life_progress";
private _progress = _ui displayCtrl 38201;
private _pgText = _ui displayCtrl 38202;
_pgText ctrlSetText format ["%2 (1%1)...","%",_upp];
private _progress progressSetPosition 0.01;
_progress progressSetPosition 0.01;
private _cP = 0.01;

for "_i" from 0 to 1 step 0 do {
Expand Down

0 comments on commit ee0fbc3

Please sign in to comment.