Allow sleeping at all tents

Vanilla development commit:

e647be13c1
This commit is contained in:
ebaydayz
2016-04-28 20:30:09 -04:00
parent 9df5c5a156
commit 2b61ce850a
4 changed files with 16 additions and 16 deletions

View File

@@ -282,7 +282,7 @@ if (_canBuild select 0) then {
if(_location1 distance _location2 > 10) exitWith {
_isOk = false;
_cancel = true;
_reason = "You've moved to far away from where you started building (within 10 meters)";
_reason = "You've moved too far away from where you started building (within 10 meters)";
detach _object;
deleteVehicle _object;
detach _objectHelper;
@@ -292,7 +292,7 @@ if (_canBuild select 0) then {
if(_location1 distance _objectHelperPos > 10) exitWith {
_isOk = false;
_cancel = true;
_reason = "Object is placed to far away from where you started building (within 10 meters)";
_reason = "Object is placed too far away from where you started building (within 10 meters)";
detach _object;
deleteVehicle _object;
detach _objectHelper;