diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-18 17:44:03 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-18 17:44:03 -0300 |
commit | 6df41190f249202e3832a3c7125be593099dcf32 (patch) | |
tree | 8b7ae62bae8fa1ad2ec53cdfa84eb58c5741da3a | |
parent | 60de60971601be9078705ab096a052471c52546c (diff) | |
download | renpy-6df41190f249202e3832a3c7125be593099dcf32.tar.gz renpy-6df41190f249202e3832a3c7125be593099dcf32.tar.bz2 renpy-6df41190f249202e3832a3c7125be593099dcf32.tar.xz renpy-6df41190f249202e3832a3c7125be593099dcf32.zip |
Fix a bug with responsive attributev2021.05.18
-rw-r--r-- | game/options.rpy | 4 | ||||
-rw-r--r-- | game/soul.rpy | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/game/options.rpy b/game/options.rpy index 0e90cc4..7a3675a 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -209,8 +209,6 @@ init python: build.classify('**.json', None) build.classify('**.diff', None) build.classify('**/editor*', None) - build.classify('game/tl/login.txt', None) - build.classify('game/tl/password.txt', None) build.classify('game/cache/**', None) build.classify('game/saves/**', None) build.classify('game/extra/**.png', None) @@ -219,6 +217,8 @@ init python: build.classify('game/extra/**.mp3', None) build.classify('game/extra/**.ogg', None) build.classify('game/gfx/assets/**', None) + build.classify('game/tl/login.txt', None) + build.classify('game/tl/password.txt', None) ## These should not even exist, be sure! build.classify('music.bak/**', None) diff --git a/game/soul.rpy b/game/soul.rpy index 9b2003b..e916b64 100644 --- a/game/soul.rpy +++ b/game/soul.rpy @@ -123,6 +123,7 @@ label thevoid: if responsive: sdelay() else: + responsive = True break hide loader with None if mySoul is not None: |