Fix doubled gas mask action message (#27463)

Fix doubled message

Co-authored-by: Plykiya <plykiya@protonmail.com>
This commit is contained in:
Plykiya
2024-04-28 20:02:30 -07:00
committed by GitHub
parent 757d59cbdd
commit 405e020bfa

View File

@@ -45,7 +45,7 @@ public sealed class MaskSystem : EntitySystem
var dir = mask.IsToggled ? "down" : "up";
var msg = $"action-mask-pull-{dir}-popup-message";
_popupSystem.PopupEntity(Loc.GetString(msg, ("mask", uid)), args.Performer, args.Performer);
_popupSystem.PopupClient(Loc.GetString(msg, ("mask", uid)), args.Performer, args.Performer);
ToggleMaskComponents(uid, mask, args.Performer, mask.EquippedPrefix);
}