diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index 0da73a1468..eabf10013d 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -33,7 +33,8 @@ using Robust.Shared.Containers; using Robust.Shared.Physics.Components; using Robust.Shared.Prototypes; using Robust.Shared.Random; -using Content.Server.Psionics; //Nyano - Summary: allows the potential psionic ability to be written to the character. +using Content.Server.Psionics; +using Content.Server.Traits.Assorted; //Nyano - Summary: allows the potential psionic ability to be written to the character. namespace Content.Server.Cloning { @@ -227,7 +228,7 @@ namespace Content.Server.Cloning var mob = Spawn(speciesPrototype.Prototype, Transform(uid).MapPosition); _humanoidSystem.CloneAppearance(bodyToClone, mob); - ///Nyano - Summary: adds the potential psionic trait to the reanimated mob. + ///Nyano - Summary: adds the potential psionic trait to the reanimated mob. EnsureComp(mob); var ev = new CloningEvent(bodyToClone, mob); diff --git a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs index 2c9a1f21ad..cb95251f5e 100644 --- a/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs +++ b/Content.Server/Nyanotrasen/Kitchen/EntitySystems/DeepFryerSystem.cs @@ -223,7 +223,7 @@ public sealed partial class DeepFryerSystem : SharedDeepfryerSystem CookingDamageAmount); var result = _damageableSystem.TryChangeDamage(item, damage, origin: uid); - if (result?.Total > FixedPoint2.Zero) + if (result?.GetTotal() > FixedPoint2.Zero) { // TODO: Smoke, waste, sound, or some indication. }