From e1257a26e45c70cdc910e7542c7c28e4ebfc186e Mon Sep 17 00:00:00 2001 From: Marselchi Date: Mon, 25 Sep 2023 14:25:04 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BE=D1=87=D0=BA?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Liner/MovingStrategies/DrawingObjectLiner.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Liner/MovingStrategies/DrawingObjectLiner.cs b/Liner/MovingStrategies/DrawingObjectLiner.cs index 9a94b25..0afe82d 100644 --- a/Liner/MovingStrategies/DrawingObjectLiner.cs +++ b/Liner/MovingStrategies/DrawingObjectLiner.cs @@ -21,8 +21,7 @@ namespace Liner.MovingStrategies { get { - if (_drawingLiner == null || _drawingLiner.EntityLiner == - null) + if (_drawingLiner == null || _drawingLiner.EntityLiner == null) { return null; } @@ -36,5 +35,4 @@ namespace Liner.MovingStrategies public void MoveObject(DirectionType direction) => _drawingLiner?.MoveTransport(direction); } - }