From c24da2bc762c175ed67690c28d5dd83766dfaf48 Mon Sep 17 00:00:00 2001 From: Sebastian Morr Date: Tue, 6 Oct 2020 18:53:53 +0200 Subject: [PATCH] Remove some unneeded print statements --- level.gd | 1 - repository.gd | 2 -- terminal.gd | 1 - 3 files changed, 4 deletions(-) diff --git a/level.gd b/level.gd index c174803..6337617 100644 --- a/level.gd +++ b/level.gd @@ -68,7 +68,6 @@ func load(path): var monospace_regex = RegEx.new() monospace_regex.compile("\\n ([^\\n]*)") description = monospace_regex.sub(description, "\n [code]$1[/code]", true) - print(description) func construct(): for r in repos: diff --git a/repository.gd b/repository.gd index b90883d..7e96250 100644 --- a/repository.gd +++ b/repository.gd @@ -147,8 +147,6 @@ func update_node_positions(): var hash_regex = RegEx.new() hash_regex.compile("[a-f0-9]+") var regex_match = hash_regex.search(line) - print(regex_match.get_string()) - print(star_idx) objects[regex_match.get_string()].position = Vector2(star_idx * 100 + 500, line_count * 100 + 500) for ref in all_refs(): diff --git a/terminal.gd b/terminal.gd index 4268c38..198eed5 100644 --- a/terminal.gd +++ b/terminal.gd @@ -54,7 +54,6 @@ func _ready(): history_position = game.state["history"].size() func _input(event): - #print(game.state) if game.state["history"].size() > 0: if event.is_action_pressed("ui_up"): if history_position > 0: