aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/LoadingScreen.gd
diff options
context:
space:
mode:
Diffstat (limited to 'game/src/Game/LoadingScreen.gd')
-rw-r--r--game/src/Game/LoadingScreen.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/Game/LoadingScreen.gd b/game/src/Game/LoadingScreen.gd
index ae04c85..c7dad9c 100644
--- a/game/src/Game/LoadingScreen.gd
+++ b/game/src/Game/LoadingScreen.gd
@@ -40,7 +40,7 @@ func _ready():
thread = Thread.new()
# FS-3, UI-30, UIFUN-35
var quotes_file := FileAccess.open(quote_file_path, FileAccess.READ).get_as_text()
- quotes = quotes_file.split("\n",false)
+ quotes = quotes_file.split("\n", false)
if quotes.is_empty():
quotes = [""]
animation_player.play("loadingscreen_gear")