summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-18 14:44:31 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-18 14:44:31 -0300
commit60de60971601be9078705ab096a052471c52546c (patch)
treeb05340e10cdd71f13658aba5e347c6869d39ce12
parent98eba803f1a4c79d9582b487644ab2c35ad3163f (diff)
downloadrenpy-60de60971601be9078705ab096a052471c52546c.tar.gz
renpy-60de60971601be9078705ab096a052471c52546c.tar.bz2
renpy-60de60971601be9078705ab096a052471c52546c.tar.xz
renpy-60de60971601be9078705ab096a052471c52546c.zip
Do not accidentally ship secrets on builds
-rw-r--r--game/options.rpy2
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)