From 1291206d8a1fc85fad7f979d68c0609fe228a084 Mon Sep 17 00:00:00 2001 From: drjaska Date: Thu, 30 Mar 2023 21:41:02 +0300 Subject: [PATCH] whitespace tabs to space fix I assume they used tab width 4, fix it so that it doesn't break with 8 --- qcsrc/common/gamemodes/gamemode/tka/tka.qh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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); -- 2.39.2