From d6d8489c4599ea74dc0de35ccc3fb249dee40706 Mon Sep 17 00:00:00 2001 From: MartynDew Date: Sat, 31 Jan 2026 14:14:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D0=BC=D0=B5=D0=BB?= =?UTF-8?q?=D0=BA=D0=B0=20(#297)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * фикс * math Математика второй класс --------- Co-authored-by: Zekins <136648667+Zekins3366@users.noreply.github.com> --- Content.Client/_Wega/Crayon/CrayonPreviewOverlay.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/_Wega/Crayon/CrayonPreviewOverlay.cs b/Content.Client/_Wega/Crayon/CrayonPreviewOverlay.cs index 2acbeb06d7..52f4712201 100644 --- a/Content.Client/_Wega/Crayon/CrayonPreviewOverlay.cs +++ b/Content.Client/_Wega/Crayon/CrayonPreviewOverlay.cs @@ -69,6 +69,6 @@ public sealed class CrayonPreviewOverlay : Overlay var grid = transform.GetGrid(player); Angle rot = grid != null ? transform.GetWorldRotation(grid.Value) : 0; - worldHandle.DrawTexture(texture, position, rot + crayon.Angle, color); + worldHandle.DrawTexture(texture, position, rot * 2 + crayon.Angle, color); } }