From d44dfdce553254fed44c58a25fd4d5235fdc1326 Mon Sep 17 00:00:00 2001 From: Jonas Bernard Date: Mon, 26 Apr 2021 21:36:40 +0200 Subject: Push --- scenes/introduction/check_mail.gd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scenes/introduction/check_mail.gd') diff --git a/scenes/introduction/check_mail.gd b/scenes/introduction/check_mail.gd index a2b20c4..6d03cce 100644 --- a/scenes/introduction/check_mail.gd +++ b/scenes/introduction/check_mail.gd @@ -15,13 +15,13 @@ func check_pw(): if passwordfield.text == correct: login() else: - if passwordfield.text == "deeper" or trys == 10: + if passwordfield.text == "deeper" or trys == 5: $Monolog2.start() $Monolog1.visible = false - if trys == 20: + if trys == 10: $Monolog3.start() $Monolog2.visible = false - if trys == 30: + if trys == 15: $Reset.visible = true correct = "tom" trys = trys + 1 -- cgit