diff options
author | hop311 <hop3114@gmail.com> | 2023-12-04 01:12:16 +0100 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2023-12-04 01:18:15 +0100 |
commit | 6e350a3dc0b596b1f76fab3b943b67b7713ea4fa (patch) | |
tree | b963c671239ecd693d4162afe4b1b9d3b064554e /game/src/Game/LoadingScreen.gd | |
parent | 9165f5980c5cfe75b3bad4303a5822340f6adcfc (diff) |
Sim submodule update + extension compatibility
Diffstat (limited to 'game/src/Game/LoadingScreen.gd')
-rw-r--r-- | game/src/Game/LoadingScreen.gd | 2 |
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") |