From 2f4476eb0cb91fbcb3ae18ec0655351c12643773 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 21 Sep 2018 21:40:27 -0700 Subject: [PATCH] unreal: remove invalid comparison (Regression from commit fac6fe506f9c58c3d96b0f6bea67a04da4a64632) --- protocols/unreal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/unreal.py b/protocols/unreal.py index ad8bb8d..ba206bf 100644 --- a/protocols/unreal.py +++ b/protocols/unreal.py @@ -112,7 +112,7 @@ class UnrealProtocol(TS6BaseProtocol): # Forward this on to SJOIN, as using JOIN in Unreal S2S seems to cause TS corruption bugs. # This seems to be what Unreal itself does anyways. - if channel not in self.channels and prefix == '': + if channel not in self.channels: prefix = 'o' # Create new channels with the first joiner as op else: prefix = ''