Fix missing localization for gasping

You can now gasp in multiple languages at once
This commit is contained in:
DrSmugleaf
2020-10-14 11:24:41 +02:00
parent 4f00acbb69
commit cd93711ba6

View File

@@ -7,6 +7,7 @@ using Content.Server.Utility;
using Content.Shared.Atmos; using Content.Shared.Atmos;
using Content.Shared.GameObjects.Components.Body.Behavior; using Content.Shared.GameObjects.Components.Body.Behavior;
using Robust.Shared.GameObjects; using Robust.Shared.GameObjects;
using Robust.Shared.Localization;
using Robust.Shared.Serialization; using Robust.Shared.Serialization;
using Robust.Shared.ViewVariables; using Robust.Shared.ViewVariables;
@@ -45,7 +46,7 @@ namespace Content.Server.GameObjects.Components.Body.Behavior
public override void Gasp() public override void Gasp()
{ {
Owner.PopupMessageEveryone("Gasp"); Owner.PopupMessageEveryone(Loc.GetString("Gasp"));
Inhale(CycleDelay); Inhale(CycleDelay);
} }