Skip to content

Commit

Permalink
Skip labs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacyway committed Jan 9, 2025
1 parent 820e4f4 commit f855089
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Fika.Core/Coop/GameMode/CoopGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1603,6 +1603,16 @@ public override async Task vmethod_1(BotControllerSettings controllerSettings, I

private async Task GenerateWeathers()
{
if (Location_0.Id == "laboratory")
{
Logger.LogInfo("Location is 'Laboratory', skipping weather generation");
Season = ESeason.Summer;
WeatherReady = true;
OfflineRaidSettingsMenuPatch_Override.UseCustomWeather = false;

return;
}

if (WeatherController.Instance != null)
{
SetMatchmakerStatus(LocaleUtils.UI_INIT_WEATHER.Localized());
Expand Down

0 comments on commit f855089

Please sign in to comment.