diff options
-rw-r--r-- | game/screens.rpy | 4 |
1 files changed, 3 insertions, 1 deletions
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 |