Remove dash from Arsenal category name (#5874)

This commit is contained in:
jonpas 2017-12-08 16:01:58 +01:00 committed by GitHub
parent d1cc7cc12b
commit 534898a680
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project name="ACE">
<Package name="Arsenal">
<Key ID="STR_ACE_Arsenal_buttonHideText">
@ -294,9 +294,9 @@
<Polish>Dodatkowy magazynek</Polish>
</Key>
<Key ID="STR_ACE_Arsenal_settingCategory">
<English>ACE - Arsenal</English>
<French>ACE - Arsenal</French>
<Polish>ACE - Arsenał</Polish>
<English>ACE Arsenal</English>
<French>ACE Arsenal</French>
<Polish>ACE Arsenał</Polish>
</Key>
<Key ID="STR_ACE_Arsenal_defaultLoadoutsTooltip">
<English>Allow the use of the default loadouts tab</English>

View File

@ -40,7 +40,7 @@ private _absLoad = getNumber (configFile >> "CfgInventoryGlobalVariable" >> "max
private _loadCoef = _unit getVariable QGVAR(loadCoef);
if (isNil "_loadCoef") then {
INFO("Note: getUnitTrait / loadCoef enum error can be ignored [present in ARMA 1.78 RC]");
INFO("Note: getUnitTrait / loadCoef enum error can be ignored [present in Arma 3 v1.78+]");
_loadCoef = _unit getUnitTrait "loadCoef";
_unit setVariable [QGVAR(loadCoef), _loadCoef, true];
};