From c49fa2f7d4700e1e81fad8ad670401e33a6d4424 Mon Sep 17 00:00:00 2001 From: Sebastian Morr Date: Thu, 29 Oct 2020 16:00:39 +0100 Subject: [PATCH] Show what HEAD points to when branch does not exist --- levels/time-machine/init | 4 +++- scenes/arrow.gd | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/levels/time-machine/init b/levels/time-machine/init index 09f0968..e953352 100644 --- a/levels/time-machine/init +++ b/levels/time-machine/init @@ -17,6 +17,8 @@ test -d .git [congrats] -Wonderful! Now, let's make sure that your time machine works correctly... +Oh hey, that's you! :) Wonderful! + +Now, let's make sure that your time machine works correctly... Click on "Next level", as soon as you're ready! diff --git a/scenes/arrow.gd b/scenes/arrow.gd index e15ddf3..a54d8fd 100644 --- a/scenes/arrow.gd +++ b/scenes/arrow.gd @@ -15,8 +15,8 @@ func _process(_delta): return if repository.objects[source].type == "head": - hide() - set_process(false) + $Tip.hide() + $Line.hide() var start = repository.objects[source].position var end = start + Vector2(0, 60)