diff --git a/Content.Server/Administration/ControlMob.cs b/Content.Server/Administration/ControlMob.cs index ed170cac3f..4a72b5dd89 100644 --- a/Content.Server/Administration/ControlMob.cs +++ b/Content.Server/Administration/ControlMob.cs @@ -55,9 +55,6 @@ namespace Content.Server.Administration return; } - if(mind.IsVisitingEntity) - mind.UnVisit(); - mindComponent.Mind?.TransferTo(null); mind.TransferTo(target); diff --git a/Content.Server/GlobalVerbs/ControlMobVerb.cs b/Content.Server/GlobalVerbs/ControlMobVerb.cs index c9892beba5..d67391c202 100644 --- a/Content.Server/GlobalVerbs/ControlMobVerb.cs +++ b/Content.Server/GlobalVerbs/ControlMobVerb.cs @@ -40,9 +40,6 @@ namespace Content.Server.GlobalVerbs var userMind = user.GetComponent().playerSession.ContentData().Mind; var targetMind = target.GetComponent(); - if(userMind.IsVisitingEntity) - userMind.UnVisit(); - targetMind.Mind?.TransferTo(null); userMind.TransferTo(target); }