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; }