From d35da6f5595eecaf35568e0256ad329b1b7000e4 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 16 Sep 2018 05:15:17 +1000 Subject: [PATCH] Change VQ3 trigger_hurt damage time to 0.1 --- qcsrc/common/mapobjects/trigger/hurt.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2