From 4e54ce4fc6c76890d98ded65964a33e9652fb0e2 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Thu, 21 Nov 2013 10:32:15 -0500 Subject: [PATCH] Cleanup localization calls (no quotes around $STR) --- .../Configs/CfgWeapons/Melee/MeleeBaseBallBat.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeBaseBallBat.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeBaseBallBat.hpp index 0c7381174..5dd1394f8 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeBaseBallBat.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeBaseBallBat.hpp @@ -6,7 +6,7 @@ class MeleeBaseBallBat: MeleeWeapon magazineReloadTime=0; model="\z\addons\dayz_communityassets\models\baseball_bat_weaponized.p3d"; picture="\z\addons\dayz_communityassets\pictures\equip_baseball_bat_ca.paa"; - displayName="$STR_EQUIP_NAME_BASEBALLBAT"; + displayName=$STR_EQUIP_NAME_BASEBALLBAT; droppeditem= "MeleeBaseBallBat"; magazines[]= { @@ -19,7 +19,7 @@ class MeleeBaseBallBat: MeleeWeapon }; class Library { - libTextDesc="$STR_EQUIP_DESC_BASEBALLBAT"; + libTextDesc=$STR_EQUIP_DESC_BASEBALLBAT; }; - descriptionShort="$STR_EQUIP_DESC_BASEBALLBAT"; - }; \ No newline at end of file + descriptionShort=$STR_EQUIP_DESC_BASEBALLBAT; + };