summaryrefslogtreecommitdiff
path: root/scenes/introduction/check_mail.gd
diff options
context:
space:
mode:
authorJonas Bernard <public.jbernard@web.de>2021-04-29 11:05:22 +0200
committerJonas Bernard <public.jbernard@web.de>2021-04-29 11:05:22 +0200
commitdcd2f1f84cc24998cc700eb0776a1efd43c75595 (patch)
tree4c00957b3dc483b1e98169c1ec43846cd6a14675 /scenes/introduction/check_mail.gd
parentf7dac7f1e69532a3242e29dde08ba8c1981a2796 (diff)
downloadldjam48-dcd2f1f84cc24998cc700eb0776a1efd43c75595.tar.gz
ldjam48-dcd2f1f84cc24998cc700eb0776a1efd43c75595.tar.bz2
ldjam48-dcd2f1f84cc24998cc700eb0776a1efd43c75595.zip
Last updatesHEADmaster
Diffstat (limited to 'scenes/introduction/check_mail.gd')
-rw-r--r--scenes/introduction/check_mail.gd6
1 files changed, 3 insertions, 3 deletions
diff --git a/scenes/introduction/check_mail.gd b/scenes/introduction/check_mail.gd
index 1ff4172..210ef08 100644
--- a/scenes/introduction/check_mail.gd
+++ b/scenes/introduction/check_mail.gd
@@ -15,13 +15,13 @@ func check_pw():
if passwordfield.text == correct or Settings.difficulty == Settings.Difficulty.PEACEFUL:
login()
else:
- if passwordfield.text == "deeper" or trys == 5:
+ if passwordfield.text == "deeper" or trys == 2:
$Monolog2.start()
$Monolog1.visible = false
- if trys == 10:
+ if trys == 4:
$Monolog3.start()
$Monolog2.visible = false
- if trys == 15:
+ if trys ==8:
$Reset.visible = true
correct = "tom"
trys = trys + 1