Skip to content

Commit 90ebd01

Browse files
committed
Fix random spawns
1 parent cd5ff4f commit 90ebd01

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

Fika.Core/Main/GameMode/ClientGameController.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -206,18 +206,13 @@ public override async Task ReceiveSpawnPoint(Profile profile)
206206

207207
private bool CheckSpawnTogether()
208208
{
209-
if (RaidSettings.PlayersSpawnPlace == EPlayersSpawnPlace.SamePlace)
210-
{
211-
return true;
212-
}
213-
214209
if (string.Equals(RaidSettings.SelectedLocation.Id, "labyrinth", StringComparison.OrdinalIgnoreCase)
215210
&& FikaPlugin.Instance.Settings.RandomLabyrinthSpawns)
216211
{
217212
return false;
218213
}
219214

220-
return true;
215+
return RaidSettings.PlayersSpawnPlace == EPlayersSpawnPlace.SamePlace;
221216
}
222217

223218
public override void CreateSpawnSystem(Profile profile)

0 commit comments

Comments
 (0)