Contraband examine changes (again) (#36032)

* g

* no one caught it in review, damn
This commit is contained in:
Killerqu00
2025-04-18 03:23:02 +02:00
committed by GitHub
parent 4f24b25cf9
commit e0308d0913
9 changed files with 17 additions and 16 deletions

View File

@@ -184,9 +184,9 @@ namespace Content.Shared.Examine
/// <summary>
/// Adds an icon aligned to the left of examine window that gives you info on hover.
/// </summary>
public void AddHoverExamineVerb(GetVerbsEvent<ExamineVerb> verbsEvent, Component component, string hoverMessage, string iconTexture = DefaultIconTexture)
public void AddHoverExamineVerb(GetVerbsEvent<ExamineVerb> verbsEvent, Component component, string verbText, string hoverMessage, string iconTexture = DefaultIconTexture)
{
AddDetailedExamineVerb(verbsEvent, component, FormattedMessage.Empty, "", iconTexture, hoverMessage, true);
AddDetailedExamineVerb(verbsEvent, component, FormattedMessage.Empty, verbText, iconTexture, hoverMessage, true);
}
}
}