Cargo - Revert Load Times Normalize (#6638)

This commit is contained in:
PabstMirror 2018-10-13 11:59:16 -05:00 committed by GitHub
parent 6363f73fb8
commit 6ad28439b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ if ([_object, _vehicle] call FUNC(canLoadItemIn)) then {
private _size = [_object] call FUNC(getSizeItem);
[
GVAR(loadTimeCoefficient) * 5 * _size,
GVAR(loadTimeCoefficient) * _size,
[_object, _vehicle],
{
[objNull, _this select 0 select 0, true] call EFUNC(common,claim);

View File

@ -70,7 +70,7 @@ if ([_item, GVAR(interactionVehicle), ACE_player] call FUNC(canUnloadItem)) then
private _size = [_item] call FUNC(getSizeItem);
[
GVAR(loadTimeCoefficient) * 5 * _size,
GVAR(loadTimeCoefficient) * _size,
[_item, GVAR(interactionVehicle), ACE_player],
{["ace_unloadCargo", _this select 0] call CBA_fnc_localEvent},
{},

View File

@ -11,7 +11,7 @@
QGVAR(loadTimeCoefficient), "SLIDER",
[LSTRING(loadTimeCoefficient), LSTRING(loadTimeCoefficient_description)],
[LELSTRING(OptionsMenu,CategoryLogistics), LLSTRING(openMenu)],
[0, 3, 1, 1],
[0, 10, 5, 1],
true,
{[QGVAR(loadTimeCoefficient), _this, true] call EFUNC(common,cbaSettings_settingChanged)}
] call CBA_settings_fnc_init;

View File

@ -316,7 +316,7 @@
<English>Load Time Coefficient</English>
</Key>
<Key ID="STR_ACE_Cargo_loadTimeCoefficient_description">
<English>Modifies how long it takes to load/unload items.\nTime, in seconds, is 5 times the size of the item multiplied by this value.</English>
<English>Modifies how long it takes to load/unload items.\nTime, in seconds, is the size of the item multiplied by this value.</English>
</Key>
</Package>
</Project>