From 2383511efa695c28e240052f6a47e3cde85c2bfe Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 19 Feb 2016 19:46:07 +0000 Subject: [PATCH] Added idtech3 --- GameServerQuery/gsquery.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/GameServerQuery/gsquery.py b/GameServerQuery/gsquery.py index a1380a5a7..b132038e3 100644 --- a/GameServerQuery/gsquery.py +++ b/GameServerQuery/gsquery.py @@ -3,7 +3,7 @@ # Game Server Query # Author: Anonymous & Daniel Gibbs # # Website: http://gameservermanagers.com -# Version: 030515 +# Version: 190216 import optparse import socket @@ -19,14 +19,16 @@ class GameServer: # if self.option.engine == 'source': self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' - if self.option.engine == 'goldsource': + elif self.option.engine == 'goldsource': self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' - if self.option.engine == 'spark': + elif self.option.engine == 'spark': self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' - if self.option.engine == 'realvirtuality': + elif self.option.engine == 'realvirtuality': self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' - if self.option.engine == 'unity3d': + elif self.option.engine == 'unity3d': self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' + elif self.option.engine == 'idtech3': + self.query_prompt_string = '\xFF\xFF\xFF\xFFTSource Engine Query\0' elif self.option.engine == 'unreal': self.query_prompt_string = '\x5C\x69\x6E\x66\x6F\x5C' elif self.option.engine == 'unreal2': @@ -101,7 +103,7 @@ if __name__ == '__main__': action = 'store', dest = 'engine', default = False, - help = 'Engine type: avalanche, goldsource, realvirtuality, spark, source, unity3d, unreal, unreal2.' + help = 'Engine type: avalanche, goldsource, idtech3, realvirtuality, spark, source, unity3d, unreal, unreal2.' ) parser.add_option( '-v', '--verbose',