#3846 - fix for ControlMobVerb not working for ghosts (#4131)

* #3846 - fix for ControlMobVerb not working for ghosts

* #3846 - small improvents from CR

* #3846 incorpated suggested changes

* #3846 simplified visiting entity check in mind.cs
This commit is contained in:
Galactic Chimp
2021-06-12 06:51:04 +02:00
committed by GitHub
parent 1b429cd8b6
commit ca4e665296
3 changed files with 12 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ namespace Content.Server.Cloning
mindComp.Mind != null)
return;
mind.TransferTo(entity);
mind.TransferTo(entity, ghostCheckOverride: true);
mind.UnVisit();
ClonesWaitingForMind.Remove(mind);
}