aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/LoadingScreen.gd
diff options
context:
space:
mode:
author Hop311 <Hop3114@gmail.com>2023-12-04 10:47:51 +0100
committer GitHub <noreply@github.com>2023-12-04 10:47:51 +0100
commite01d332f407420db84fbfd207f18c3fec1c1b6a3 (patch)
treeb963c671239ecd693d4162afe4b1b9d3b064554e /game/src/Game/LoadingScreen.gd
parent9165f5980c5cfe75b3bad4303a5822340f6adcfc (diff)
parent6e350a3dc0b596b1f76fab3b943b67b7713ea4fa (diff)
Merge pull request #168 from OpenVicProject/update-sim
Sim submodule update + compatibility fixes
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")