- fix: Height on cline and some stuff

This commit is contained in:
2024-03-17 18:25:52 +03:00
parent eb78be2549
commit 31a548215c
4 changed files with 36 additions and 1 deletions

View File

@@ -182,6 +182,13 @@ public sealed partial class HumanoidAppearanceSystem : SharedHumanoidAppearanceS
grammar.Gender = sourceHumanoid.Gender;
}
// AMOUR START
var ev = new HumanoidAppearanceClonedEvent(
new Entity<HumanoidAppearanceComponent>(source,sourceHumanoid),
new Entity<HumanoidAppearanceComponent>(target,targetHumanoid));
RaiseLocalEvent(source, ev);
// AMOUR END
Dirty(targetHumanoid);
}