Fix rotate CCW verb icon.

It was the CW one due to copy&paste.
This commit is contained in:
Pieter-Jan Briers
2020-05-30 00:44:17 +02:00
parent 9acc1f092d
commit 53542a4d0c

View File

@@ -55,7 +55,7 @@ namespace Content.Server.GameObjects.Components
{ {
data.CategoryData = VerbCategories.Rotate; data.CategoryData = VerbCategories.Rotate;
data.Text = "Rotate counter-clockwise"; 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) protected override void Activate(IEntity user, RotatableComponent component)