From d92497bc52c898b643cd5dde4e334a3f27a91b59 Mon Sep 17 00:00:00 2001 From: ScrawnyRonnie <73139382+ScrawnyRonnie@users.noreply.github.com> Date: Wed, 25 Oct 2023 18:31:27 -0400 Subject: [PATCH] IA to caves? --- .../net/psforever/services/InterstellarClusterService.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/net/psforever/services/InterstellarClusterService.scala b/src/main/scala/net/psforever/services/InterstellarClusterService.scala index 781ace2b6..89b9bdedc 100644 --- a/src/main/scala/net/psforever/services/InterstellarClusterService.scala +++ b/src/main/scala/net/psforever/services/InterstellarClusterService.scala @@ -173,7 +173,7 @@ class InterstellarClusterService(context: ActorContext[InterstellarClusterServic } val hotspotsAndSpawnsInZones: Iterable[(Zone, HotSpotInfo, List[SpawnPoint])] = zones .collect { - case zone if !zone.map.cavern && zone.Players.nonEmpty => + case zone if zone.Players.nonEmpty => zone.HotSpotData .map { info => (zone, info, zone.findNearestSpawnPoints(faction, info.DisplayLocation, spawnTarget))