From: drjaska Date: Thu, 30 Mar 2023 18:41:02 +0000 (+0300) Subject: whitespace tabs to space fix X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1291206d8a1fc85fad7f979d68c0609fe228a084;p=xonotic%2Fxonotic-data.pk3dir.git whitespace tabs to space fix I assume they used tab width 4, fix it so that it doesn't break with 8 --- diff --git a/qcsrc/common/gamemodes/gamemode/tka/tka.qh b/qcsrc/common/gamemodes/gamemode/tka/tka.qh index db7873454..c6de0eefd 100644 --- a/qcsrc/common/gamemodes/gamemode/tka/tka.qh +++ b/qcsrc/common/gamemodes/gamemode/tka/tka.qh @@ -57,9 +57,9 @@ CLASS(TeamKeepaway, Gametype) ENDCLASS(TeamKeepaway) REGISTER_GAMETYPE(TEAM_KEEPAWAY, NEW(TeamKeepaway)); -const int TKA_BALL_TAKEN_RED = BIT(0); -const int TKA_BALL_TAKEN_BLUE = BIT(1); -const int TKA_BALL_TAKEN_YELLOW = BIT(2); -const int TKA_BALL_TAKEN_PINK = BIT(3); -const int TKA_BALL_CARRYING = BIT(4); -const int TKA_BALL_DROPPED = BIT(5); +const int TKA_BALL_TAKEN_RED = BIT(0); +const int TKA_BALL_TAKEN_BLUE = BIT(1); +const int TKA_BALL_TAKEN_YELLOW = BIT(2); +const int TKA_BALL_TAKEN_PINK = BIT(3); +const int TKA_BALL_CARRYING = BIT(4); +const int TKA_BALL_DROPPED = BIT(5);