From 70bc970649f3d748bb19ecf09f9daafcd23c3058 Mon Sep 17 00:00:00 2001 From: Lyssa <75037904+thecatontheceiling@users.noreply.github.com> Date: Wed, 11 Dec 2024 20:33:50 +0400 Subject: [PATCH] v2.2.0 - public lobbies --- GlobalVariables.gd | 6 +++--- Steam.gd | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) 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)