Skip to content

Commit

Permalink
Fix Standard Cloners Not Transferring Appearance (#1709)
Browse files Browse the repository at this point in the history
# Description

I only just now found out that the stock cloner doesn't transfer your
character's appearance. And neither does the Metem machine if you win
the roll. This fixes that.

# Changelog

:cl:
- fix: Both standard Cloner, and Metem Machines(when you win the psychic
willpower roll) now correctly transfer over your old character
appearance.
  • Loading branch information
VMSolidus authored Feb 3, 2025
1 parent 72a6735 commit 428c83d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Content.Server/Cloning/CloningSystem.Utility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,9 @@ private void UpdateCloneAppearance(
pref = pref.WithFlavorText(flavorText);

_humanoidSystem.LoadProfile(mob, pref);
return;
}
_humanoidSystem.LoadProfile(mob, pref);
}

/// <summary>
Expand Down

0 comments on commit 428c83d

Please sign in to comment.