Unset return warp only if we are on shipworld

This commit is contained in:
DBotThePony 2024-04-29 19:13:42 +07:00
parent d1e478b6ef
commit afd93fea99
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -391,7 +391,7 @@ class ServerWorldTracker(val world: ServerWorld, val client: ServerConnection, p
if (playerEntity != null && (world.worldID is WorldID.Celestial || world.worldID is WorldID.ShipWorld && world.worldID.uuid == client.uuid) && setReturnWarp) {
client.returnWarp = WarpAction.World(world.worldID, SpawnTarget.Position(playerEntity.position))
} else if (setReturnWarp) {
} else if (setReturnWarp && world.worldID is WorldID.ShipWorld) {
client.returnWarp = null
}