From: Mario Date: Sat, 15 Sep 2018 19:15:17 +0000 (+1000) Subject: Change VQ3 trigger_hurt damage time to 0.1 X-Git-Tag: xonotic-v0.8.5~1864 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d35da6f5595eecaf35568e0256ad329b1b7000e4;p=xonotic%2Fxonotic-data.pk3dir.git Change VQ3 trigger_hurt damage time to 0.1 --- diff --git a/qcsrc/common/mapobjects/trigger/hurt.qc b/qcsrc/common/mapobjects/trigger/hurt.qc index a19c86415..ccdf2c7d0 100644 --- a/qcsrc/common/mapobjects/trigger/hurt.qc +++ b/qcsrc/common/mapobjects/trigger/hurt.qc @@ -25,7 +25,7 @@ void trigger_hurt_touch(entity this, entity toucher) if (toucher.triggerhurttime < time) { EXACTTRIGGER_TOUCH(this, toucher); - toucher.triggerhurttime = time + ((autocvar_sv_vq3compat && !(this.spawnflags & HURT_SLOW)) ? 0.2 : 1); + toucher.triggerhurttime = time + ((autocvar_sv_vq3compat && !(this.spawnflags & HURT_SLOW)) ? 0.1 : 1); entity own; own = this.enemy;