fix: Cleans up core code (#1187)
**Only one functional change** * Fixes a bug in LogFactory where `Warning` is being logged as `Information` Non-functional changes: * Updates/Fixes copyright headers * Removes namespace scopes for core files. View with [whitespace off](https://github.com/modernuo/ModernUO/pull/1187/files?w=1).
This commit is contained in:
parent
0138d40bda
commit
f268d5d4e2
262 changed files with 28527 additions and 28646 deletions
|
|
@ -1,39 +1,38 @@
|
|||
namespace Server.Targeting
|
||||
namespace Server.Targeting;
|
||||
|
||||
public class LandTarget : IPoint3D
|
||||
{
|
||||
public class LandTarget : IPoint3D
|
||||
private Point3D m_Location;
|
||||
|
||||
public LandTarget(Point3D location, Map map)
|
||||
{
|
||||
private Point3D m_Location;
|
||||
m_Location = location;
|
||||
|
||||
public LandTarget(Point3D location, Map map)
|
||||
if (map != null)
|
||||
{
|
||||
m_Location = location;
|
||||
|
||||
if (map != null)
|
||||
{
|
||||
m_Location.Z = map.GetAverageZ(m_Location.X, m_Location.Y);
|
||||
TileID = map.Tiles.GetLandTile(m_Location.X, m_Location.Y).ID & TileData.MaxLandValue;
|
||||
}
|
||||
m_Location.Z = map.GetAverageZ(m_Location.X, m_Location.Y);
|
||||
TileID = map.Tiles.GetLandTile(m_Location.X, m_Location.Y).ID & TileData.MaxLandValue;
|
||||
}
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public string Name => TileData.LandTable[TileID].Name;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public TileFlag Flags => TileData.LandTable[TileID].Flags;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int TileID { get; }
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public Point3D Location => m_Location;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int X => m_Location.X;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int Y => m_Location.Y;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int Z => m_Location.Z;
|
||||
}
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public string Name => TileData.LandTable[TileID].Name;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public TileFlag Flags => TileData.LandTable[TileID].Flags;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int TileID { get; }
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public Point3D Location => m_Location;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int X => m_Location.X;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int Y => m_Location.Y;
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int Z => m_Location.Z;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue