From dfb83cda13fdaf272417fcb69b4e5b7781c360b9 Mon Sep 17 00:00:00 2001 From: Bohica <53943479+Bohicatv@users.noreply.github.com> Date: Sun, 23 Nov 2025 09:58:33 -0800 Subject: [PATCH] fix: Fixes priced healer resurrection when not choosing the correct option (#2276) --- Projects/UOContent/Gumps/ResurrectGump.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Projects/UOContent/Gumps/ResurrectGump.cs b/Projects/UOContent/Gumps/ResurrectGump.cs index 6612db956..44af971d0 100644 --- a/Projects/UOContent/Gumps/ResurrectGump.cs +++ b/Projects/UOContent/Gumps/ResurrectGump.cs @@ -176,7 +176,14 @@ public class ResurrectGump : DynamicGump public override void OnResponse(NetState state, in RelayInfo info) { - if (info.ButtonID is not 1 and not 2) + if (_price > 0) + { + if (info.ButtonID != 2 || info.Switches[0] != 1) + { + return; + } + } + else if (info.ButtonID != 1) { return; }