diff --git a/SQF/dayz_code/actions/player_loadCrate.sqf b/SQF/dayz_code/actions/player_loadCrate.sqf index 094c891ce..3a1e80252 100644 --- a/SQF/dayz_code/actions/player_loadCrate.sqf +++ b/SQF/dayz_code/actions/player_loadCrate.sqf @@ -53,8 +53,11 @@ if(_type == "weapon") then { if(_type == "backpack") then { _b0x1337 addBackpackCargoGlobal [_create,_qty]; }; - -_b0x1337 setPosATL _location; +if (surfaceIsWater _location) then { + _b0x1337 setPosASL _location; +} else { + _b0x1337 setPosATL _location; +}; player reveal _b0x1337;