]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
redundant indent
authorMartin Taibr <taibr.martin@gmail.com>
Fri, 11 Aug 2017 20:55:58 +0000 (22:55 +0200)
committerMartin Taibr <taibr.martin@gmail.com>
Fri, 11 Aug 2017 20:55:58 +0000 (22:55 +0200)
qcsrc/common/mutators/mutator/dodging/sv_dodging.qc

index 1f628b6707fe953f3a8b9ab1895660108421f88a..ccd87b1d5e97eeab277baa5750eb26276ca45ac1 100644 (file)
@@ -155,12 +155,12 @@ bool PM_dodging_checkpressedkeys(entity this)
        if (mymovement_##COND)                                                                                          \
                /* is this a state change? */                                                                                                   \
                if(!(PHYS_DODGING_PRESSED_KEYS(this) & KEY_##BTN) || frozen_no_doubletap) {             \
-                               tap_direction_##RESULT;                                                                                                 \
-                               if ((time - this.last_##BTN##_KEY_time) < PHYS_DODGING_TIMEOUT(this) || frozen_no_doubletap)    \
-                                       dodge_detected = true;                                                                                          \
-                               if(PHYS_INPUT_BUTTON_DODGE(this))                                                                               \
-                                       dodge_detected = true;                                                                                          \
-                               this.last_##BTN##_KEY_time = time;                                                                              \
+                       tap_direction_##RESULT;                                                                                                 \
+                       if ((time - this.last_##BTN##_KEY_time) < PHYS_DODGING_TIMEOUT(this) || frozen_no_doubletap)    \
+                               dodge_detected = true;                                                                                          \
+                       if(PHYS_INPUT_BUTTON_DODGE(this))                                                                               \
+                               dodge_detected = true;                                                                                          \
+                       this.last_##BTN##_KEY_time = time;                                                                              \
                }
        X(x < 0, BACKWARD,      x--);
        X(x > 0, FORWARD,       x++);