This commit is contained in:
Michele 2021-01-01 18:35:35 +00:00
parent f9c6b1c02f
commit 901d8ff8c3
4 changed files with 179 additions and 63 deletions

View file

@ -190,7 +190,7 @@ namespace Sledgemapper.Shared.Entities
}
var lineExist = Lines.TryGetValue(line.ToString(), out var tile);
var newLine = new Line { Start=line.Start, End=line.End};
var newLine = new Line { Start=line.Start, End=line.End, Width=line.Width};
if (lineExist)
{
Lines.TryRemove(line.ToString(), out var _);