diff options
-rw-r--r-- | Archipelago/settings_screen.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Archipelago/settings_screen.gd b/Archipelago/settings_screen.gd index deb0003..de64214 100644 --- a/Archipelago/settings_screen.gd +++ b/Archipelago/settings_screen.gd | |||
@@ -2,6 +2,12 @@ extends Spatial | |||
2 | 2 | ||
3 | 3 | ||
4 | func _ready(): | 4 | func _ready(): |
5 | # Some helpful logging. | ||
6 | if Steam.isSubscribed(): | ||
7 | global._print("Provisioning successful! Build ID: %d" % Steam.getAppBuildId()) | ||
8 | else: | ||
9 | global._print("Provisioning failed.") | ||
10 | |||
5 | # Undo the load screen removing our cursor | 11 | # Undo the load screen removing our cursor |
6 | get_tree().get_root().set_disable_input(false) | 12 | get_tree().get_root().set_disable_input(false) |
7 | Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) | 13 | Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) |