diff --git a/Content.Server/Botany/Systems/MutationSystem.cs b/Content.Server/Botany/Systems/MutationSystem.cs index 68863a4801..a1794b8118 100644 --- a/Content.Server/Botany/Systems/MutationSystem.cs +++ b/Content.Server/Botany/Systems/MutationSystem.cs @@ -320,7 +320,10 @@ public sealed class MutationSystem : EntitySystem { if (Random(0.5f)) { - val.Remove(this_chem.Key); + if (val.Count > 1) + { + val.Remove(this_chem.Key); + } } } }