From 4b22ba4dab44fc8169653d3c02c0eb80ec95ca1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolaj=20=27Eastvillage=27=20=C3=98=20Jensen?= Date: Sun, 5 Mar 2023 14:37:57 +0100 Subject: [PATCH] Fix Beast celebration (#289) --- RLBotPack/beastbot/beastbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RLBotPack/beastbot/beastbot.py b/RLBotPack/beastbot/beastbot.py index ae6c6aff..ad05f467 100644 --- a/RLBotPack/beastbot/beastbot.py +++ b/RLBotPack/beastbot/beastbot.py @@ -47,7 +47,7 @@ def get_output(self, packet: GameTickPacket) -> SimpleControllerState: # Check if match is over if packet.game_info.is_match_ended: - return moves.celebrate(self) # Assuming we win! + return other.celebrate(self) # Assuming we win! self.renderer.begin_rendering()