From 19012a6e696b238970ea3a6d5119a1fc6af54692 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 6 Nov 2016 23:03:34 +0100 Subject: [PATCH] Fix mod loop --- deps/fmt | 2 +- src/Components/Modules/Party.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/fmt b/deps/fmt index d8867a2b..05ba3e78 160000 --- a/deps/fmt +++ b/deps/fmt @@ -1 +1 @@ -Subproject commit d8867a2b07b8be2adf5d503ecc9d9e65dcc59ec2 +Subproject commit 05ba3e788846957ddb88277ed73b54073e595907 diff --git a/src/Components/Modules/Party.cpp b/src/Components/Modules/Party.cpp index 9cb6fbd2..a6959cb8 100644 --- a/src/Components/Modules/Party.cpp +++ b/src/Components/Modules/Party.cpp @@ -380,7 +380,7 @@ namespace Components { Party::ConnectError("Invalid join response: Unknown matchtype"); } - else if(!info.Get("fs_game").empty() && Dvar::Var("fs_game").Get() != info.Get("fs_game")) + else if(!info.Get("fs_game").empty() && Utils::String::ToLower(Dvar::Var("fs_game").Get()) != Utils::String::ToLower(info.Get("fs_game"))) { Command::Execute("closemenu popup_reconnectingtoparty"); Download::InitiateClientDownload(info.Get("fs_game"));