diff --git a/Scripts/Utils/TeleporterLinker.cs b/Scripts/Utils/TeleporterLinker.cs index c3445da8..bb139fdc 100644 --- a/Scripts/Utils/TeleporterLinker.cs +++ b/Scripts/Utils/TeleporterLinker.cs @@ -26,7 +26,7 @@ public partial class TeleporterLinker : Node2D Vector2 start = _teleporter.GlobalPosition; Vector2 end = _teleporter.Target.GlobalPosition; - DrawLine(ToLocal(start), ToLocal(end), Color, 2.0f); + DrawLine(ToLocal(start), ToLocal(end) + new Vector2(4,4), Color, 2.0f); } public override void _Process(double delta)