From aff83bf521f23371492e85d91a2c8490813f004a Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 13 Feb 2022 17:52:20 +0100 Subject: [PATCH] Add missing -B arg --- rcon/gui.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rcon/gui.py b/rcon/gui.py index 5bdcce1..a0d2082 100644 --- a/rcon/gui.py +++ b/rcon/gui.py @@ -37,6 +37,10 @@ def get_args() -> Namespace: """Parses the command line arguments.""" parser = ArgumentParser(description='A minimalistic, GTK-based RCON GUI.') + parser.add_argument( + '-B', '--battleye', action='store_true', + help='use BattlEye RCon instead of Source RCON' + ) parser.add_argument( '-d', '--debug', action='store_true', help='print additional debug information'