Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Altis_Life.Altis/core/items/fn_jerryCanRefuel.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ if (_action) then {
_progress progressSetPosition _cP;
_pgText ctrlSetText format ["%3 (%1%2)...",round(_cP * 100),"%",_title];
if (_cP >= 1) exitWith {};
if (!alive player) exitWith {life_action_inUse = false;};
if (life_interrupted) exitWith {life_interrupted = false; life_action_inUse = false;};
if (!alive player) exitWith {};
if (life_interrupted) exitWith {};
};

//Kill the UI display and check for various states
Expand All @@ -77,4 +77,4 @@ if (_action) then {
hint localize "STR_NOTF_ActionCancel";
closeDialog 0;
life_action_inUse = false;
};
};