Buckle icon fix (#3698)

This commit is contained in:
BulletGrade
2021-03-24 03:45:55 -03:00
committed by GitHub
parent f3a180c3d5
commit f87b381468

View File

@@ -204,7 +204,7 @@ namespace Content.Server.GameObjects.Components.Strap
}
data.Visibility = VerbVisibility.Visible;
data.IconTexture = buckle.BuckledTo == null ? "/Textures/Interface/VerbIcons/buckle.svg.96dpi.png" : "/Textures/Interface/VerbIcons/unbuckle.svg.192dpi.png";
data.IconTexture = buckle.BuckledTo == null ? "/Textures/Interface/VerbIcons/buckle.svg.192dpi.png" : "/Textures/Interface/VerbIcons/unbuckle.svg.192dpi.png";
data.Text = Loc.GetString(buckle.BuckledTo == null ? "Buckle" : "Unbuckle");
}