1
0
Fork 0

[server] Bugfix: Correct Rectangle logic

This commit is contained in:
Starbeamrainbowlabs 2017-02-21 18:25:48 +00:00
parent 6f4388c50f
commit 3689f685b9
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ namespace SBRL.Utilities
[JsonIgnore]
public int Bottom {
get {
return Y + Width;
return Y + Height;
}
}
/// <summary>