diff --git a/Content.Server/Administration/Commands/RejuvenateCommand.cs b/Content.Server/Administration/Commands/RejuvenateCommand.cs index 12616f563c..7fbf25380e 100644 --- a/Content.Server/Administration/Commands/RejuvenateCommand.cs +++ b/Content.Server/Administration/Commands/RejuvenateCommand.cs @@ -57,7 +57,10 @@ namespace Content.Server.Administration.Commands target.GetComponentOrNull()?.ResetThirst(); target.GetComponentOrNull()?.ResetStuns(); - EntitySystem.Get().Extinguish(target.Uid); + if (target.TryGetComponent(out FlammableComponent? flammable)) + { + EntitySystem.Get().Extinguish(target.Uid, flammable); + } if (target.TryGetComponent(out DamageableComponent? damageable)) {