summaryrefslogtreecommitdiff
path: root/scenes/introduction
diff options
context:
space:
mode:
authorJonas Bernard <public.jbernard@web.de>2021-04-26 21:36:40 +0200
committerJonas Bernard <public.jbernard@web.de>2021-04-26 21:36:40 +0200
commitd44dfdce553254fed44c58a25fd4d5235fdc1326 (patch)
treeea79a719773ab5cc4bfae11a38c5fc82ca87b915 /scenes/introduction
parentddbc6f7fe3e45bf17ecfc79b9cca3559e419b9fc (diff)
downloadldjam48-d44dfdce553254fed44c58a25fd4d5235fdc1326.tar.gz
ldjam48-d44dfdce553254fed44c58a25fd4d5235fdc1326.tar.bz2
ldjam48-d44dfdce553254fed44c58a25fd4d5235fdc1326.zip
Push
Diffstat (limited to 'scenes/introduction')
-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 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