@@ -146,7 +146,7 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem
|
|||||||
public void CloneAppearance(EntityUid source, EntityUid target, HumanoidAppearanceComponent? sourceHumanoid = null,
|
public void CloneAppearance(EntityUid source, EntityUid target, HumanoidAppearanceComponent? sourceHumanoid = null,
|
||||||
HumanoidAppearanceComponent? targetHumanoid = null)
|
HumanoidAppearanceComponent? targetHumanoid = null)
|
||||||
{
|
{
|
||||||
if (!Resolve(source, ref sourceHumanoid) || !Resolve(target, ref targetHumanoid))
|
if (!Resolve(source, ref sourceHumanoid, false) || !Resolve(target, ref targetHumanoid, false))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
targetHumanoid.Species = sourceHumanoid.Species;
|
targetHumanoid.Species = sourceHumanoid.Species;
|
||||||
|
|||||||
@@ -178,7 +178,6 @@
|
|||||||
entity: MobLizard
|
entity: MobLizard
|
||||||
forced: true
|
forced: true
|
||||||
transferName: true
|
transferName: true
|
||||||
transferHumanoidAppearance: true
|
|
||||||
inventory: None
|
inventory: None
|
||||||
revertOnDeath: true
|
revertOnDeath: true
|
||||||
revertOnCrit: true
|
revertOnCrit: true
|
||||||
@@ -190,7 +189,6 @@
|
|||||||
entity: MobLuminousPerson
|
entity: MobLuminousPerson
|
||||||
forced: true
|
forced: true
|
||||||
transferName: true
|
transferName: true
|
||||||
transferHumanoidAppearance: true
|
|
||||||
inventory: None
|
inventory: None
|
||||||
revertOnDeath: true
|
revertOnDeath: true
|
||||||
revertOnCrit: true
|
revertOnCrit: true
|
||||||
|
|||||||
Reference in New Issue
Block a user