From 2348d1a655a7e9943d618f1817ff57d3300907bd Mon Sep 17 00:00:00 2001 From: Stefan Hacker Date: Mon, 25 Mar 2013 17:39:56 +0100 Subject: [PATCH] Invalid game regex in source.py. - Was hidden by correct value in source.ini --- modules/source/source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/source/source.py b/modules/source/source.py index 3f25f4d..6b6b67f 100644 --- a/modules/source/source.py +++ b/modules/source/source.py @@ -64,7 +64,7 @@ class source(MumoModule): ('database', str, "source.sqlite"), ('basechannelid', int, 0), ('mumbleservers', commaSeperatedIntegers, []), - ('gameregex', re.compile, re.compile("^(tf|dod|cstrike)$")), + ('gameregex', re.compile, re.compile("^(tf|dod|cstrike|hl2mp)$")), ('groupprefix', str, "source_") ),