summaryrefslogtreecommitdiff
path: root/scenes
diff options
context:
space:
mode:
Diffstat (limited to 'scenes')
-rw-r--r--scenes/introduction/check_mail.gd6
-rw-r--r--scenes/levels/typeracer.gd2
2 files changed, 4 insertions, 4 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
diff --git a/scenes/levels/typeracer.gd b/scenes/levels/typeracer.gd
index 9251298..50582a0 100644
--- a/scenes/levels/typeracer.gd
+++ b/scenes/levels/typeracer.gd
@@ -17,7 +17,7 @@ func start():
func _total_time():
if Settings.difficulty == Settings.Difficulty.HARD:
return 30
- return 60
+ return 120
func _process(delta):
if not running: