From: Martin Taibr Date: Fri, 18 Aug 2017 15:51:49 +0000 (+0200) Subject: debug stmt X-Git-Tag: xonotic-v0.8.5~2430^2~10 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=09cf2f947ddfa8cfe424e4bf1b41d67542a2063d;p=xonotic%2Fxonotic-data.pk3dir.git debug stmt --- diff --git a/qcsrc/common/mutators/mutator/dodging/sv_dodging.qc b/qcsrc/common/mutators/mutator/dodging/sv_dodging.qc index aeddcdb70..b57a1459f 100644 --- a/qcsrc/common/mutators/mutator/dodging/sv_dodging.qc +++ b/qcsrc/common/mutators/mutator/dodging/sv_dodging.qc @@ -184,7 +184,7 @@ bool PM_dodging_checkpressedkeys(entity this) bool can_air_dodge = (PHYS_DODGING_AIR && (PHYS_DODGING_AIR_MAXSPEED == 0 || vdist(this.velocity, <, PHYS_DODGING_AIR_MAXSPEED))); if (!can_dodge && !can_wall_dodge && !can_air_dodge) return false; - //LOG_INFOF("dodge delay %f\n", time - this.last_dodging_time); // TODO lowest i got with double press: 0.63 + LOG_INFOF("dodge delay %f (%s)\n", time - this.last_dodging_time, this.netname); // TODO lowest i got with double press: 0.63 this.last_dodging_time = time; this.dodging_action = 1;