X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Fmutators%2Fmutator%2Fbuffs%2Fsv_buffs.qc;fp=qcsrc%2Fcommon%2Fmutators%2Fmutator%2Fbuffs%2Fsv_buffs.qc;h=82c9a595a64455255c783a84a4ca87f27b7cb45e;hp=5ec00e1253008e57e4c330e7ccb0ee82d171260e;hb=a5fcfecb5218bad5a91f9b585e1f631718d6a2ac;hpb=5497273eb7ea5524751d79a5f6204e357d4a2d18 diff --git a/qcsrc/common/mutators/mutator/buffs/sv_buffs.qc b/qcsrc/common/mutators/mutator/buffs/sv_buffs.qc index 5ec00e125..82c9a595a 100644 --- a/qcsrc/common/mutators/mutator/buffs/sv_buffs.qc +++ b/qcsrc/common/mutators/mutator/buffs/sv_buffs.qc @@ -261,7 +261,7 @@ void buff_Think(entity this) } if(!game_stopped) - if((round_handler_IsActive() && !round_handler_IsRoundStarted()) || time >= game_starttime) + if((round_handler_IsActive() && round_handler_IsRoundStarted()) || time >= game_starttime) if(!this.buff_activetime_updated) { buff_SetCooldown(this, this.buff_activetime); @@ -282,7 +282,7 @@ void buff_Think(entity this) if(this.buff_activetime) if(!game_stopped) - if((round_handler_IsActive() && !round_handler_IsRoundStarted()) || time >= game_starttime) + if((round_handler_IsActive() && round_handler_IsRoundStarted()) || time >= game_starttime) { this.buff_activetime = max(0, this.buff_activetime - frametime);