From db41c0f40719abfdf9a81755aa0c6e4dcc787cd5 Mon Sep 17 00:00:00 2001
From: thesupersoup <40295603+thesupersoup@users.noreply.github.com>
Date: Mon, 24 Jun 2019 21:47:19 -0700
Subject: [PATCH] Update LobbyQuery.cs
---
Facepunch.Steamworks/Structs/LobbyQuery.cs | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Facepunch.Steamworks/Structs/LobbyQuery.cs b/Facepunch.Steamworks/Structs/LobbyQuery.cs
index 14dc8d5..e7f80e6 100644
--- a/Facepunch.Steamworks/Structs/LobbyQuery.cs
+++ b/Facepunch.Steamworks/Structs/LobbyQuery.cs
@@ -105,7 +105,7 @@ namespace Steamworks.Data
///
/// Test key, initialize numerical filter dictionary if necessary, then add new numerical filter
///
- internal LobbyQuery AddNumericalFilter( string key, int value, LobbyComparison compare )
+ internal void AddNumericalFilter( string key, int value, LobbyComparison compare )
{
if ( string.IsNullOrEmpty( key ) )
throw new System.ArgumentException( "Key string provided for LobbyQuery filter is null or empty", nameof( key ) );
@@ -117,8 +117,6 @@ namespace Steamworks.Data
numericalFilters = new Dictionary, LobbyComparison>();
numericalFilters.Add( new KeyValuePair( key, value ), compare );
-
- return this;
}
#endregion