simple fix

This commit is contained in:
Samuel-C
2026-03-04 20:11:35 -03:00
parent eb1831774b
commit ba39fd62bd
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -266,6 +266,6 @@ public abstract class SharedFlashSystem : EntitySystem
private void OnExamine(Entity<FlashImmunityComponent> ent, ref ExaminedEvent args)
{
if (ent.Comp.ShowInExamine)
args.PushMarkup(Loc.GetString("flash-protection"));
args.PushMarkup(Loc.GetString($"{(HasComp<ClothingComponent>(ent) ? "provides" : "has")}-flash-protection"));
}
}
@@ -1 +1,2 @@
flash-protection = It provides protection from [color=lightblue]bright flashes[/color].
provides-flash-protection = It provides protection from [color=lightblue]bright flashes[/color].
has-flash-protection = It has protection from [color=lightblue]bright flashes[/color].