From 99f841c0584c51d00f416efd9f773a67cd2f67ad Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 8 May 2021 22:22:28 -0300 Subject: Disable Steam automatic login, unless requested by commandline. --- game/core.rpy | 2 +- game/discord.rpy | 17 +++++++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/game/core.rpy b/game/core.rpy index e2adc96..2183781 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -33,7 +33,7 @@ init -3 python: if (persistent.discord is None): persistent.discord = True if (persistent.steam is None): - persistent.steam = True + persistent.steam = False if (persistent.client is None): persistent.client = "manaplus" if (persistent.iconify is None): diff --git a/game/discord.rpy b/game/discord.rpy index 6b1f14c..e579658 100644 --- a/game/discord.rpy +++ b/game/discord.rpy @@ -75,15 +75,20 @@ init -4 python: def parse_command(): parser = renpy.arguments.ArgumentParser() + # Collect args parser.add_argument('args', nargs='+', help="Command-line arguments.") - args = parser.parse_args() + targs = parser.parse_args() + args = targs.args - # Do something with args.args - print("PARSEC") - print("%s" % str(args)) - print("Args: %s" % str(args.args)) + if config.developer: + print("PARSEC") + print("Args: %s" % str(args)) + ## Command Line Defaults + if ("steam" in args): + print("Steam Mode Enabled") + persistent.steam = True return True - renpy.arguments.register_command('parse', parse_command) + renpy.arguments.register_command('adv', parse_command) -- cgit v1.2.3-70-g09d2