fix: Updates polymorph gump to use StaticGump (#1898)

This commit is contained in:
Kamron Batman 2024-08-04 16:35:11 -07:00 • committed by GitHub
parent 8f39af9579
commit a6a647551f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 71 additions and 71 deletions

View file

@ -77,9 +77,7 @@ namespace Server.Spells.Seventh
if (m_NewBody == 0)
{
var gump = Core.SE ? (Gump)new NewPolymorphGump(caster, Scroll) : new PolymorphGump(caster, Scroll);
caster.SendGump(gump);
caster.SendGump(Core.SE ? new NewPolymorphGump(Scroll) : new PolymorphGump(Scroll));
return false;
}