we now limit the speed factor to (18 max run speed) for thirst and
hunger, this will fix issue with getting hungry while too fast while
driving or flying.
This commit is contained in:
[VB]AWOL
2014-01-19 14:38:51 -06:00
parent 0a614fdaff
commit 9062ac5f95
2 changed files with 1 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ while {true} do {
_inVehicle = (_refObj != player); _inVehicle = (_refObj != player);
// _size = (sizeOf typeOf _refObj) * _factor; // _size = (sizeOf typeOf _refObj) * _factor;
_vel = velocity player; _vel = velocity player;
_speed = round((_vel distance [0,0,0]) * 3.5); _speed = (round((_vel distance [0,0,0]) * 3.5)) min 18;
// dayz_areaAffect = _size; // dayz_areaAffect = _size;