From 9d28504ecf3b2f65e3f19d5fe51eee8f57237579 Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Mon, 9 Jan 2017 17:22:41 -0500 Subject: [PATCH] Remove comment in player_wearClothes.sqf Vanilla commit: https://github.com/DayZMod/DayZ/commit/72b37dc108fa8af90bc44e5a52065374951a3372 --- SQF/dayz_code/actions/player_wearClothes.sqf | 8 -------- 1 file changed, 8 deletions(-) diff --git a/SQF/dayz_code/actions/player_wearClothes.sqf b/SQF/dayz_code/actions/player_wearClothes.sqf index cfeeaa4d7..cacab66a6 100644 --- a/SQF/dayz_code/actions/player_wearClothes.sqf +++ b/SQF/dayz_code/actions/player_wearClothes.sqf @@ -48,14 +48,6 @@ if ( (isClass(_config >> _itemNew)) ) then { _model = getText (configFile >> "CfgSurvival" >> "Skins" >> _item >> "playerModel"); if (_model != _myModel) then { if(([player,_item] call BIS_fnc_invRemove) == 1) then { - /* - //play animation when changing clothes (Prevents out of breath resetting) - player playActionNow "Medic"; - - //wait animation end - waitUntil {getNumber (configFile >> "CfgMovesMaleSdr" >> "States" >> (animationState player) >> "disableWeapons") == 1}; - waitUntil {getNumber (configFile >> "CfgMovesMaleSdr" >> "States" >> (animationState player) >> "disableWeapons") == 0}; - */ player addMagazine _itemNew; _morphHandle = [dayz_playerUID,dayz_characterID,_model] spawn player_humanityMorph; };