From 25ebc127a96c559ef20302acc00993790ae60f4b Mon Sep 17 00:00:00 2001 From: Martin Taibr Date: Fri, 11 Aug 2017 22:55:58 +0200 Subject: [PATCH] redundant indent --- qcsrc/common/mutators/mutator/dodging/sv_dodging.qc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/qcsrc/common/mutators/mutator/dodging/sv_dodging.qc b/qcsrc/common/mutators/mutator/dodging/sv_dodging.qc index 1f628b670..ccd87b1d5 100644 --- a/qcsrc/common/mutators/mutator/dodging/sv_dodging.qc +++ b/qcsrc/common/mutators/mutator/dodging/sv_dodging.qc @@ -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++); -- 2.39.2