Typo? fudgeFactor usage missing from one of the CreateMapLink methods.

This commit is contained in:
Raymond 2021-05-20 19:18:02 -04:00 committed by GitHub
parent 13b64d531f
commit 350b9e26ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -150,7 +150,7 @@ namespace Dalamud.Game.Text.SeStringHandling
var map = mapSheet.GetRows().FirstOrDefault(row => row.PlaceName.Row == place.RowId); var map = mapSheet.GetRows().FirstOrDefault(row => row.PlaceName.Row == place.RowId);
if (map != null) if (map != null)
{ {
return CreateMapLink(map.TerritoryType.Row, (uint)map.RowId, xCoord, yCoord); return CreateMapLink(map.TerritoryType.Row, (uint)map.RowId, xCoord, yCoord, fudgeFactor);
} }
} }