Solves privacy concern

This commit is contained in:
GManon 2022-11-29 02:33:26 -03:00
parent dc80db05c7
commit 18d4688ced

View file

@ -56,7 +56,7 @@ screen mod_menu():
ymaximum 0.8 ymaximum 0.8
ypos 200 ypos 200
yinitial 0 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" scrollbars "vertical"
mousewheel True mousewheel True
draggable True draggable True
@ -75,7 +75,7 @@ screen mod_menu():
size 45 size 45
text_align 0.5 text_align 0.5
outlines [(3, "#445ABB", absolute(0), absolute(0))] outlines [(3, "#445ABB", absolute(0), absolute(0))]
at center at truecenter
############################# #############################
# Stuff for mods in android # # Stuff for mods in android #
@ -85,10 +85,7 @@ init python:
import os import os
if renpy.windows: if renpy.android:
moddir = renpy.config.gamedir.replace("\\", "/")
elif renpy.android:
moddir = os.path.join(os.environ["ANDROID_PUBLIC"], "game") moddir = os.path.join(os.environ["ANDROID_PUBLIC"], "game")
@ -100,6 +97,6 @@ init python:
pass pass
else: else:
moddir = renpy.config.gamedir moddir = ".../game"
moddir += "/mods/" moddir += "/mods/"