From 273c8b89541c691aae9ccd6a0e88ec5534815b6a Mon Sep 17 00:00:00 2001 From: Marko Date: Mon, 21 Jul 2014 19:20:47 +0200 Subject: [PATCH] Update trade_weapons.sqf Revert || back to or for text messages --- SQF/dayz_code/actions/trade_weapons.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SQF/dayz_code/actions/trade_weapons.sqf b/SQF/dayz_code/actions/trade_weapons.sqf index 9dd34bdd2..b81feea20 100644 --- a/SQF/dayz_code/actions/trade_weapons.sqf +++ b/SQF/dayz_code/actions/trade_weapons.sqf @@ -40,7 +40,7 @@ if(_buy_o_sell == "sell") then { } else { // buying item type must NOT exist if rifle || pistol - _msg = "Drop || sell your current weapon before you can buy a new one."; + _msg = "Drop or sell your current weapon before you can buy a new one."; _config = (configFile >> "CfgWeapons" >> _part_out); _configName = configName(_config); _wepType = getNumber(_config >> "Type"); @@ -64,7 +64,7 @@ if(_buy_o_sell == "sell") then { }; if(_isToolBelt || _isBinocs) then { _abort = (_configName in (weapons player)); - _msg = "Drop || sell your current toolbelt item before you can buy a new one."; + _msg = "Drop or sell your current toolbelt item before you can buy a new one."; }; };