From 53542a4d0c1d0f1a1ebc981cd3b47b9c415a3c0b Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 30 May 2020 00:44:17 +0200 Subject: [PATCH] Fix rotate CCW verb icon. It was the CW one due to copy&paste. --- Content.Server/GameObjects/Components/RotatableComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/Components/RotatableComponent.cs b/Content.Server/GameObjects/Components/RotatableComponent.cs index b4c53ed9f2..01eba427dc 100644 --- a/Content.Server/GameObjects/Components/RotatableComponent.cs +++ b/Content.Server/GameObjects/Components/RotatableComponent.cs @@ -55,7 +55,7 @@ namespace Content.Server.GameObjects.Components { data.CategoryData = VerbCategories.Rotate; data.Text = "Rotate counter-clockwise"; - data.IconTexture = "/Textures/UserInterface/VerbIcons/rotate_cw.svg.96dpi.png"; + data.IconTexture = "/Textures/UserInterface/VerbIcons/rotate_ccw.svg.96dpi.png"; } protected override void Activate(IEntity user, RotatableComponent component)