From dab0bb9a0c420647cca2dc52161ccd77b529bb8f Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 19 May 2021 02:12:07 -0300 Subject: Hide this option if Steam Login is enabled (would be a lie!) --- game/screens.rpy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/game/screens.rpy b/game/screens.rpy index d3f900b..af637bf 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -699,7 +699,9 @@ screen preferences(): label _("Others") textbutton _("Remember TOTP %s" % ifte(persistent.totp is not None, _("ON"), _("OFF"))): action Function(renpy.call_in_new_context, "set2fa") - textbutton _("Remember Login %s" % ifte(persistent.vmethod is not None, _("ON"), _("OFF"))): + showif not persistent.steam: + textbutton _("Remember Login %s" % ifte( + persistent.vmethod is not None, _("ON"), _("OFF"))): action Function(renpy.call_in_new_context, "savevm") textbutton _("Validate Files"): action ifte(persistent.client is not None and -- cgit v1.2.3-70-g09d2