From 868487c9b20a2f4f91cdae3ab66dfd1ef6239e8c Mon Sep 17 00:00:00 2001 From: GManon Date: Sun, 1 Jan 2023 21:14:36 -0300 Subject: [PATCH] Prevents exception when emulating the android version through renpy --- 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 8035584b..338da1ee 100644 --- a/game/src/mod_menu.rpy +++ b/game/src/mod_menu.rpy @@ -85,7 +85,7 @@ init python: import os - if renpy.android: + if renpy.android and not config.developer: moddir = os.path.join(os.environ["ANDROID_PUBLIC"], "game")