From da351ca56569412a7dbb0100574e053ba4d89d89 Mon Sep 17 00:00:00 2001 From: dayz10k Date: Thu, 21 Nov 2013 09:44:03 -0500 Subject: [PATCH] Cleanup localization calls (no quotes around $STR) --- SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp b/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp index a0d06b885..9642fd9d1 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp @@ -1,7 +1,7 @@ class MeleeFlashlight : Pistol { class ItemActions { class Toolbelt { - text = "$STR_EPOCH_PLAYER_296"; + text = $STR_EPOCH_PLAYER_296; }; }; }; @@ -9,7 +9,7 @@ class MeleeFlashlight : Pistol { class ItemFlashlight : ItemCore { class ItemActions { class Toolbelt { - text = "$STR_EPOCH_PLAYER_295"; + text = $STR_EPOCH_PLAYER_295; }; }; }; @@ -17,7 +17,7 @@ class MeleeFlashlight : Pistol { class MeleeFlashlightRed : MeleeFlashlight { class ItemActions { class Toolbelt { - text = "$STR_EPOCH_PLAYER_296"; + text = $STR_EPOCH_PLAYER_296; }; }; }; @@ -25,7 +25,7 @@ class MeleeFlashlight : Pistol { class ItemFlashlightRed : ItemCore { class ItemActions { class Toolbelt { - text = "$STR_EPOCH_PLAYER_295"; + text = $STR_EPOCH_PLAYER_295; }; }; };