Skip to content

Commit 14eabbb

Browse files
committed
Fixed issue #1
1 parent f3a023a commit 14eabbb

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

source/duws_revive/reviveInit.sqf

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ DUWS_revive_addaction = {
55
if (!DUWS_player_injured) then {
66
_this addaction ["<t color='#ff00ff'>Revive</t>","duws_revive\playerRevived.sqf", "", 0, true, true, "", "((_target distance _this) < 3"];
77
};
8-
};
8+
};
99

1010
DUWS_revive_respawned = {
1111
if (!DUWS_player_injured) then {
12-
removeAllActions _this;
12+
//removeAllActions _this;
1313
};
14-
};
14+
};
1515

1616
DUWS_revive_revived = {
1717
if (_this == player) then {
@@ -38,18 +38,17 @@ DUWS_sync_animhealing = {
3838
_this switchmove "AinvPknlMstpSlayWpstDnon_medic";
3939
};
4040

41-
41+
4242
// Compile scripts
4343
getLoadout = compile preprocessFileLineNumbers 'duws_revive\get_loadout.sqf';
4444
setLoadout = compile preprocessFileLineNumbers 'duws_revive\set_loadout.sqf';
45-
45+
4646
// Save loadout every 5 seconds
4747
[] spawn {
4848
while{true} do {
4949
if(alive player) then {
5050
saved_loadout = [player] call getLoadout;
5151
};
52-
sleep 5;
52+
sleep 5;
5353
};
5454
};
55-

0 commit comments

Comments
 (0)