From f6365d876b25a6f25434bd3ebf77c77a17fd5e9b Mon Sep 17 00:00:00 2001 From: dayz10k Date: Thu, 21 Nov 2013 09:55:33 -0500 Subject: [PATCH] Cleanup localization calls (no quotes around $STR) --- SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp index 112384341..6946d8d6e 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeCrowbar.hpp @@ -21,7 +21,7 @@ class MeleeCrowbar: MeleeWeapon { class Toolbelt { - text="$STR_EPOCH_PLAYER_296"; + text=$STR_EPOCH_PLAYER_296; script="spawn player_addToolbelt;"; use[]= { @@ -35,7 +35,7 @@ class MeleeCrowbar: MeleeWeapon }; class Library { - libTextDesc="STR_EQUIP_CROWBAR_DESC"; + libTextDesc=$STR_EQUIP_CROWBAR_DESC; }; - descriptionShort="STR_EQUIP_CROWBAR_DESC"; + descriptionShort=$STR_EQUIP_CROWBAR_DESC; };