From e8ead6267baf27c575d0f3b2ea083b866f48e155 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Sat, 12 Aug 2023 12:25:12 -0500 Subject: [PATCH] item actions can be used while horizontal (#21866) --- code/datums/action.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/action.dm b/code/datums/action.dm index 14006689a9e..757ba727147 100644 --- a/code/datums/action.dm +++ b/code/datums/action.dm @@ -137,7 +137,7 @@ //Presets for item actions /datum/action/item_action - check_flags = AB_CHECK_RESTRAINED|AB_CHECK_STUNNED|AB_CHECK_LYING|AB_CHECK_CONSCIOUS + check_flags = AB_CHECK_RESTRAINED|AB_CHECK_STUNNED|AB_CHECK_HANDS_BLOCKED|AB_CHECK_CONSCIOUS var/use_itemicon = TRUE /datum/action/item_action/New(Target, custom_icon, custom_icon_state)