From 6b58f1dd143f0a08a73fa9fe6425c25850544082 Mon Sep 17 00:00:00 2001 From: nutbuster Date: Thu, 27 Oct 2022 17:00:51 +1100 Subject: [PATCH] Replace is not with != --- game/src/mod_menu.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/src/mod_menu.rpy b/game/src/mod_menu.rpy index 3180fbc..f40fe0f 100644 --- a/game/src/mod_menu.rpy +++ b/game/src/mod_menu.rpy @@ -67,7 +67,7 @@ screen mod_menu(): #buttons are messed up but that's ok use mod_menu_button("gui/button/menubuttons/template_idle.png", "Return", ShowMenu("main_menu")) - if len(mod_menu_access) is not 0: + if len(mod_menu_access) != 0: use mod_menu_buttons("gui/button/menubuttons/template_idle.png", mod_menu_access ) else: use mod_menu_button("gui/button/menubuttons/template_idle.png", "You have no mods", None)