diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-18 14:44:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-18 14:44:31 -0300 |
commit | 60de60971601be9078705ab096a052471c52546c (patch) | |
tree | b05340e10cdd71f13658aba5e347c6869d39ce12 /game | |
parent | 98eba803f1a4c79d9582b487644ab2c35ad3163f (diff) | |
download | renpy-60de60971601be9078705ab096a052471c52546c.tar.gz renpy-60de60971601be9078705ab096a052471c52546c.tar.bz2 renpy-60de60971601be9078705ab096a052471c52546c.tar.xz renpy-60de60971601be9078705ab096a052471c52546c.zip |
Do not accidentally ship secrets on builds
Diffstat (limited to 'game')
-rw-r--r-- | game/options.rpy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/options.rpy b/game/options.rpy index 605161f..0e90cc4 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -209,6 +209,8 @@ 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) |