diff options
author | Jonas Bernard <public.jbernard@web.de> | 2021-04-29 11:05:22 +0200 |
---|---|---|
committer | Jonas Bernard <public.jbernard@web.de> | 2021-04-29 11:05:22 +0200 |
commit | dcd2f1f84cc24998cc700eb0776a1efd43c75595 (patch) | |
tree | 4c00957b3dc483b1e98169c1ec43846cd6a14675 /scenes/introduction/check_mail.gd | |
parent | f7dac7f1e69532a3242e29dde08ba8c1981a2796 (diff) | |
download | ldjam48-dcd2f1f84cc24998cc700eb0776a1efd43c75595.tar.gz ldjam48-dcd2f1f84cc24998cc700eb0776a1efd43c75595.tar.bz2 ldjam48-dcd2f1f84cc24998cc700eb0776a1efd43c75595.zip |
Diffstat (limited to 'scenes/introduction/check_mail.gd')
-rw-r--r-- | scenes/introduction/check_mail.gd | 6 |
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 |