From dcd2f1f84cc24998cc700eb0776a1efd43c75595 Mon Sep 17 00:00:00 2001 From: Jonas Bernard Date: Thu, 29 Apr 2021 11:05:22 +0200 Subject: Last updates --- scenes/introduction/check_mail.gd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scenes/introduction') 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 -- cgit