diff --git a/GlobalVariables.gd b/GlobalVariables.gd index 305df7b..4390b5b 100644 --- a/GlobalVariables.gd +++ b/GlobalVariables.gd @@ -1,7 +1,7 @@ extends Node -var currentVersion_nr = "v2.1.0" -var currentVersion_hotfix = 11 +var currentVersion_nr = "v2.2.0" +var currentVersion_hotfix = 4 var using_steam = true var currentVersion = "" @@ -283,7 +283,7 @@ func _ready(): active_match_customization_dictionary = debug_match_customization func _unhandled_input(event): - if GlobalVariables.mp_debugging: + if mp_debugging or mp_debug_keys_enabled: if event.is_action_pressed("debug_q"): SwapLanguage(false) if event.is_action_pressed("debug_e"): diff --git a/Steam.gd b/Steam.gd index c576676..1562883 100644 --- a/Steam.gd +++ b/Steam.gd @@ -14,6 +14,9 @@ var STEAM_NAME = "" var ONLINE = false var HOST_ID = 0 +var is_lobby_friends_only = true +var lobby_player_limit = 4 + func _ready(): process_priority = 1000 set_process_internal(true)