1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00

[server] Bugfix: Correct Rectangle logic

This commit is contained in:
Starbeamrainbowlabs 2017-02-21 18:25:48 +00:00
parent 6f4388c50f
commit 3689f685b9

View file

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