diff --git a/FrEee.UI.Blazor/Views/GalaxyMap.razor.cs b/FrEee.UI.Blazor/Views/GalaxyMap.razor.cs index 68811681..9d434cbd 100644 --- a/FrEee.UI.Blazor/Views/GalaxyMap.razor.cs +++ b/FrEee.UI.Blazor/Views/GalaxyMap.razor.cs @@ -32,8 +32,8 @@ protected override async Task OnAfterRenderAsync(bool firstRender) foreach (var dest in connections.Value) { // TODO: display one way warps differently (arrows, incomplete lines, gradients?) - await ctx.MoveToAsync(src.Location.X, src.Location.Y); - await ctx.LineToAsync(dest.Location.X, dest.Location.Y); + await ctx.MoveToAsync(src.Location.X + 1, src.Location.Y - 1); + await ctx.LineToAsync(dest.Location.X + 1, dest.Location.Y - 1); await ctx.StrokeAsync(); } }