From: terencehill Date: Fri, 4 Feb 2022 10:03:26 +0000 (+0100) Subject: Fix #2651 "12th campaign level is incompleteable with recent LMS non-forced join... X-Git-Tag: xonotic-v0.8.5~216 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=e3b8d05b1d1b0f00dce110600e6abcc8476b6d14;hp=973e6a6dd2823147f8120aa7e79f522b41f64bc0;p=xonotic%2Fxonotic-data.pk3dir.git Fix #2651 "12th campaign level is incompleteable with recent LMS non-forced join changes and with default g_start_delay being 0" --- diff --git a/qcsrc/common/gamemodes/gamemode/lms/sv_lms.qc b/qcsrc/common/gamemodes/gamemode/lms/sv_lms.qc index c8cc0e6e5..d7729d42f 100644 --- a/qcsrc/common/gamemodes/gamemode/lms/sv_lms.qc +++ b/qcsrc/common/gamemodes/gamemode/lms/sv_lms.qc @@ -54,7 +54,7 @@ int WinningCondition_LMS() { // two or more active players - continue with the game - if (autocvar_g_campaign) + if (autocvar_g_campaign && campaign_bots_may_start) { FOREACH_CLIENT(IS_REAL_CLIENT(it), { float pl_lives = GameRules_scoring_add(it, LMS_LIVES, 0);