From fabbafdb5d4e1dc4d22d83a6f44532ac8e6849fd Mon Sep 17 00:00:00 2001
From: Ybyx <Ybyx12@protonmail.com>
Date: Tue, 3 Jan 2023 09:08:11 -0600
Subject: [PATCH] Fix combat not rendering with radio buttons

Fixes issue introduced in !1848
---
 game/base-combat/actions-hands.twee | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/base-combat/actions-hands.twee b/game/base-combat/actions-hands.twee
index 0ff5703c26..2b16425160 100644
--- a/game/base-combat/actions-hands.twee
+++ b/game/base-combat/actions-hands.twee
@@ -500,8 +500,8 @@ $NPCList[5].lefthand is "pen" or $NPCList[5].righthand is "pen">>
 :: Widgets Actions Right Hand [widget]
 
 <<widget "rightdefault">>
-<<if $righttarget isnot "self">>
-	<<set _rightaction["Stroke"] to "rightchest" and $punishmentposition isnot "gloryhole">>
+<<if $righttarget isnot "self" and $punishmentposition isnot "gloryhole">>
+	<<set _rightaction["Stroke"] to "rightchest">>
 	<<if $consensual isnot 1 and ($fightTargets is undefined or $fightTargets.includes($righttarget))>>
 		<<set _rightaction["Punch"] to "righthit">>
 	<</if>>
-- 
GitLab