Fix: Energy Gun Fire Mode Pop-up Message (#5624)

buh
This commit is contained in:
Stxcking 2026-04-05 09:24:32 -04:00 committed by GitHub
parent dbb8ff9c45
commit 2998efd4bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -127,7 +127,7 @@ public sealed class EnergyGunSystem : EntitySystem
if (user != null)
{
_popupSystem.PopupEntity(Loc.GetString("gun-set-fire-mode", ("mode", component.CurrentFireMode.Name != string.Empty ? component.CurrentFireMode.Name : prototype.Name)), uid, user.Value);
_popupSystem.PopupEntity(Loc.GetString("energygun-set-fire-mode", ("mode", component.CurrentFireMode.Name != string.Empty ? component.CurrentFireMode.Name : prototype.Name)), uid, user.Value);
}
if (component.CurrentFireMode.State == string.Empty)

View File

@ -1 +1,4 @@
energygun-examine-fire-mode = The firemode is set to {$mode}
energygun-examine-fire-mode = The fire mode is set to [color=yellow]{$mode}[/color].
# Pop-up Message
energygun-set-fire-mode = Set fire mode to {$mode}.