diff --git a/Content.Server/GlobalVerbs/RejuvenateVerb.cs b/Content.Server/GlobalVerbs/RejuvenateVerb.cs index e7b949f6b8..494cf2df87 100644 --- a/Content.Server/GlobalVerbs/RejuvenateVerb.cs +++ b/Content.Server/GlobalVerbs/RejuvenateVerb.cs @@ -1,4 +1,5 @@ -using Content.Server.GameObjects.Components.Mobs; +using Content.Server.GameObjects.Components.Atmos; +using Content.Server.GameObjects.Components.Mobs; using Content.Server.GameObjects.Components.Nutrition; using Content.Shared.GameObjects.Components.Damage; using Content.Shared.GameObjects.Verbs; @@ -73,6 +74,16 @@ namespace Content.Server.GlobalVerbs { stun.ResetStuns(); } + + if (target.TryGetComponent(out FlammableComponent flammable)) + { + flammable.Extinguish(); + } + + if (target.TryGetComponent(out CreamPiedComponent creamPied)) + { + creamPied.Wash(); + } } } }