From 87026b48e17a3c4bbbe4c38e8e5a28397d145ac8 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Tue, 8 Sep 2015 18:13:23 -0700 Subject: [PATCH] Fixes wrong a_intent, blame 8fae0f02 --- code/modules/clothing/under/accessories/holster.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/under/accessories/holster.dm b/code/modules/clothing/under/accessories/holster.dm index 0417a8ce0c5..06e13d50ed0 100644 --- a/code/modules/clothing/under/accessories/holster.dm +++ b/code/modules/clothing/under/accessories/holster.dm @@ -52,7 +52,7 @@ if(istype(user.get_active_hand(),/obj) && istype(user.get_inactive_hand(),/obj)) user << "You need an empty hand to draw the [holstered]!" else - if(user.a_intent == "hurt") + if(user.a_intent == I_HARM) usr.visible_message("\red [user] draws the [holstered], ready to shoot!", \ "You draw the [holstered], ready to shoot!") else