Clean up: Bugs, LINQ, constructors, default values, and null checks (#18)
This commit is contained in:
parent
e748af4430
commit
513e54f70e
1094 changed files with 15913 additions and 21892 deletions
|
|
@ -30,11 +30,7 @@ namespace Server.Gumps
|
|||
private int m_Hue;
|
||||
private int m_X, m_Y;
|
||||
|
||||
public GumpImage(int x, int y, int gumpID) : this(x, y, gumpID, 0)
|
||||
{
|
||||
}
|
||||
|
||||
public GumpImage(int x, int y, int gumpID, int hue)
|
||||
public GumpImage(int x, int y, int gumpID, int hue = 0)
|
||||
{
|
||||
m_X = x;
|
||||
m_Y = y;
|
||||
|
|
@ -68,9 +64,8 @@ namespace Server.Gumps
|
|||
|
||||
public override string Compile(NetState ns)
|
||||
{
|
||||
if (m_Hue == 0)
|
||||
return $"{{ gumppic {m_X} {m_Y} {m_GumpID} }}";
|
||||
return $"{{ gumppic {m_X} {m_Y} {m_GumpID} hue={m_Hue} }}";
|
||||
return m_Hue == 0 ? $"{{ gumppic {m_X} {m_Y} {m_GumpID} }}" :
|
||||
$"{{ gumppic {m_X} {m_Y} {m_GumpID} hue={m_Hue} }}";
|
||||
}
|
||||
|
||||
public override void AppendTo(NetState ns, IGumpWriter disp)
|
||||
|
|
@ -87,4 +82,4 @@ namespace Server.Gumps
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue