Skip to content

Commit

Permalink
fix final linting issues I think
Browse files Browse the repository at this point in the history
  • Loading branch information
IcculusC committed Aug 6, 2024
1 parent a90c226 commit 67368dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Projects/UOContent/Gumps/PricedResurrectGump.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using Server.Engines.Virtues;
using Server.Items;
using Server.Misc;
using Server.Mobiles;
using Server.Network;
Expand All @@ -23,7 +22,7 @@ protected override void BuildLayout(ref StaticGumpBuilder builder)
{
builder.SetNoClose();

builder.AddPage(0);
builder.AddPage();

builder.AddImage(0, 0, 3600);

Expand Down
8 changes: 4 additions & 4 deletions Projects/UOContent/Gumps/ResurrectGump.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class ResurrectGump : DynamicGump
private readonly ResurrectMessage _resurrectMessage;

public ResurrectGump(Mobile owner, double hitsScalar)
: this(owner, owner, ResurrectMessage.Generic, false, hitsScalar)
: this(owner, ResurrectMessage.Generic, false, hitsScalar)
{
}

Expand All @@ -31,12 +31,12 @@ public ResurrectGump(Mobile owner, ResurrectMessage msg) : this(owner, owner, ms
}

public ResurrectGump(Mobile owner, bool fromSacrifice = false)
: this(owner, owner, ResurrectMessage.Generic, fromSacrifice)
: this(owner, ResurrectMessage.Generic, fromSacrifice)
{
}

public ResurrectGump(
Mobile owner, Mobile healer, ResurrectMessage msg = ResurrectMessage.Generic,
Mobile healer, ResurrectMessage msg = ResurrectMessage.Generic,
bool fromSacrifice = false, double hitsScalar = 0.0
) : base(100, 0)
{
Expand All @@ -48,7 +48,7 @@ public ResurrectGump(

protected override void BuildLayout(ref DynamicGumpBuilder builder)
{
builder.AddPage(0);
builder.AddPage();

builder.AddBackground(0, 0, 400, 350, 2600);

Expand Down

0 comments on commit 67368dc

Please sign in to comment.