]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
debug stmt
authorMartin Taibr <taibr.martin@gmail.com>
Fri, 18 Aug 2017 15:51:49 +0000 (17:51 +0200)
committerMartin Taibr <taibr.martin@gmail.com>
Fri, 18 Aug 2017 15:51:49 +0000 (17:51 +0200)
qcsrc/common/mutators/mutator/dodging/sv_dodging.qc

index aeddcdb705fcaf09a2f1b2b8e9faacdd1904d8f3..b57a1459fe3e2906baa644981abd86c1c69e3987 100644 (file)
@@ -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;