Fixed GPS issue

This commit is contained in:
Garrett Fulghum
2022-04-30 17:55:43 -05:00
parent e8c50eb07b
commit e2ec73610f
5 changed files with 13 additions and 8 deletions

View File

@@ -40,9 +40,11 @@ namespace SeamlessClientPlugin.SeamlessTransfer
SeamlessClient.TryShow("Beginning Redirect to server: " + Transfer.TargetServerID);
var world = Request.DeserializeWorldData();
SwitchServers Switcher = new SwitchServers(E, Request.DeserializeWorldData());
SwitchServers Switcher = new SwitchServers(E, world);
Switcher.BeginSwitch();
}
}