mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-01-22 17:26:20 +01:00
Solves privacy concern
This commit is contained in:
parent
dc80db05c7
commit
18d4688ced
1 changed files with 4 additions and 7 deletions
|
@ -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/"
|
Loading…
Reference in a new issue