From: Martin Taibr Date: Mon, 12 Aug 2019 10:10:44 +0000 (+0200) Subject: Fix a newly added bug to match old behavior *exactly* X-Git-Tag: xonotic-v0.8.5~1401^2~2 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=a19691c00ed5c5fedb760bf023945ef041f6f509 Fix a newly added bug to match old behavior *exactly* --- diff --git a/qcsrc/server/sv_main.qc b/qcsrc/server/sv_main.qc index a281e9054b..6b5b19d79e 100644 --- a/qcsrc/server/sv_main.qc +++ b/qcsrc/server/sv_main.qc @@ -30,7 +30,7 @@ void CreatureFrame_hotliquids(entity this) { - if (this.dmgtime > time) + if (this.dmgtime >= time) { return; }