Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Baugh committed Jul 6, 2020
1 parent 0710876 commit 916090f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hybrasyl/Map.cs
Original file line number Diff line number Diff line change
Expand Up @@ -702,11 +702,11 @@ public bool IsValidPoint(short x, short y)
}

/// <summary>
/// Find the nearest empty tile (e.g. non-wall) next to
/// Find the nearest empty tile (e.g. non-wall, not containing an NPC or a player) next to the specified x, y coordinates.
/// </summary>
/// <param name="xStart"></param>
/// <param name="yStart"></param>
/// <returns></returns>
/// <param name="xStart">X location to start search</param>
/// <param name="yStart">Y location to start search</param>
/// <returns>x,y tuple of nearest empty tile</returns>
public (byte x, byte y) FindEmptyTile(byte xStart, byte yStart)
{
byte retx = 0;
Expand Down

0 comments on commit 916090f

Please sign in to comment.