From eb412ec8e1ef0c8a0357d73acf7f83cdc28792b6 Mon Sep 17 00:00:00 2001 From: TrialTemp Date: Sat, 6 Jan 2024 02:10:11 -0600 Subject: [PATCH] Long comments are now ILLEGAL --- .../ba_data/python/bascenev1lib/game/capturetheflag.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/assets/ba_data/python/bascenev1lib/game/capturetheflag.py b/src/assets/ba_data/python/bascenev1lib/game/capturetheflag.py index be8a5b44..edb6f898 100644 --- a/src/assets/ba_data/python/bascenev1lib/game/capturetheflag.py +++ b/src/assets/ba_data/python/bascenev1lib/game/capturetheflag.py @@ -526,13 +526,16 @@ class CaptureTheFlagGame(bs.TeamGameActivity[Player, Team]): return team = player.team - # For each "point" our player has touched the flag (Could be multiple), - # deduct one from both our player and the flag's return touches variable. + # For each "point" our player has touched theflag (Could be multiple), + # deduct one from both our player and + # the flag's return touches variable. for _ in range(player.touching_own_flag): # Deduct player.touching_own_flag -= 1 team.flag_return_touches -= 1 - # Update our flag's timer accordingly (Prevents immediate resets in case there might be more people touching it). + # Update our flag's timer accordingly + # (Prevents immediate resets in case + # there might be more people touching it). if team.flag_return_touches == 0: team.touch_return_timer = None team.touch_return_timer_ticking = None