diff --git a/game/src/mod_menu.rpy b/game/src/mod_menu.rpy index 4d5fdc9..e8948f2 100644 --- a/game/src/mod_menu.rpy +++ b/game/src/mod_menu.rpy @@ -56,7 +56,7 @@ screen mod_menu(): ymaximum 0.8 ypos 200 yinitial 0 - if len(mod_menu_access) > 5: # Hides the scrollbar when not needed. Ideally nobody would install mora than one at the same time, but oh well + if len(mod_menu_access) > 5: # Hides the scrollbar when not needed. Ideally nobody would install more than one mod at the same time, but oh well scrollbars "vertical" mousewheel True draggable True @@ -75,7 +75,7 @@ screen mod_menu(): size 45 text_align 0.5 outlines [(3, "#445ABB", absolute(0), absolute(0))] - at center + at truecenter ############################# # Stuff for mods in android # @@ -85,10 +85,7 @@ init python: import os - if renpy.windows: - moddir = renpy.config.gamedir.replace("\\", "/") - - elif renpy.android: + if renpy.android: moddir = os.path.join(os.environ["ANDROID_PUBLIC"], "game") @@ -100,6 +97,6 @@ init python: pass else: - moddir = renpy.config.gamedir + moddir = ".../game" moddir += "/mods/" \ No newline at end of file