From: Martin Taibr Date: Fri, 11 Aug 2017 20:55:58 +0000 (+0200) Subject: redundant indent X-Git-Tag: xonotic-v0.8.5~2430^2~27 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;ds=sidebyside;h=25ebc127a96c559ef20302acc00993790ae60f4b;p=xonotic%2Fxonotic-data.pk3dir.git redundant indent --- 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++);