Fix verb error texture (#3439)
This commit is contained in:
@@ -38,7 +38,7 @@ namespace Content.Shared.GameObjects.EntitySystemMessages
|
||||
public readonly string Text;
|
||||
public readonly string Key;
|
||||
public readonly string Category;
|
||||
public readonly SpriteSpecifier Icon;
|
||||
public readonly SpriteSpecifier? Icon;
|
||||
public readonly SpriteSpecifier? CategoryIcon;
|
||||
public readonly bool Available;
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace Content.Shared.GameObjects.Verbs
|
||||
/// <summary>
|
||||
/// Sprite of the icon that the user sees on the verb button.
|
||||
/// </summary>
|
||||
public SpriteSpecifier Icon { get; set; } = SpriteSpecifier.Invalid;
|
||||
public SpriteSpecifier? Icon { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Name of the category this button is under.
|
||||
@@ -32,7 +32,7 @@ namespace Content.Shared.GameObjects.Verbs
|
||||
/// <summary>
|
||||
/// Sprite of the icon that the user sees on the verb button.
|
||||
/// </summary>
|
||||
public SpriteSpecifier? CategoryIcon { get; set; } = SpriteSpecifier.Invalid;
|
||||
public SpriteSpecifier? CategoryIcon { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Whether this verb is visible, disabled (greyed out) or hidden.
|
||||
|
||||
Reference in New Issue
Block a user