From 5f0528ad7b5edefccd2fd2c5aac9d5c60537cdbe Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Sun, 24 Aug 2025 06:34:56 -0700 Subject: [PATCH] [Bugfix] Lizard smite fix (#39842) Fix Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- Content.Server/Polymorph/Systems/PolymorphSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index 90fd3ec663..aef9267eae 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -272,7 +272,7 @@ public sealed partial class PolymorphSystem : EntitySystem if (configuration.TransferHumanoidAppearance) { - _humanoid.CloneAppearance(uid, child); + _humanoid.CloneAppearance(child, uid); } if (_mindSystem.TryGetMind(uid, out var mindId, out var mind))