From 8b11759fe415df01b54ce826ea0a1f7a9f1c6acd Mon Sep 17 00:00:00 2001 From: KoffeinFlummi Date: Fri, 6 Mar 2015 07:32:23 +0100 Subject: [PATCH] Fix faulty interaction config --- addons/medical/CfgVehicles.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/medical/CfgVehicles.hpp b/addons/medical/CfgVehicles.hpp index 7dd4397ff1..0a5c7c1788 100644 --- a/addons/medical/CfgVehicles.hpp +++ b/addons/medical/CfgVehicles.hpp @@ -65,7 +65,7 @@ class CfgVehicles { displayName = "Bandage Head"; distance = 2.0; condition = QUOTE([ARR_4(_player, _target, 'head', 'Bandage')] call DFUNC(canTreat)); - statement = QUOTE([ARR_4(_player, _target, 'head', 'Bandage Head')] call DFUNC(treatment)); + statement = QUOTE([ARR_4(_player, _target, 'head', 'Bandage')] call DFUNC(treatment)); showDisabled = 1; priority = 2; hotkey = "B"; @@ -86,10 +86,10 @@ class CfgVehicles { }; class ACE_ArmLeft { class Bandage_LeftArm { - displayName = "Bandage Right Arm"; + displayName = "Bandage Left Arm"; distance = 2.0; - condition = QUOTE([ARR_4(_player, _target, 'hand_r', 'Bandage')] call DFUNC(canTreat)); - statement = QUOTE([ARR_4(_player, _target, 'hand_r', 'Bandage')] call DFUNC(treatment)); + condition = QUOTE([ARR_4(_player, _target, 'hand_l', 'Bandage')] call DFUNC(canTreat)); + statement = QUOTE([ARR_4(_player, _target, 'hand_l', 'Bandage')] call DFUNC(treatment)); showDisabled = 1; priority = 2; hotkey = "B";