add key request to protocol support

This commit is contained in:
ghost 2023-12-24 21:58:11 +02:00
parent 75487e36e8
commit 4501ee1b0d

View File

@ -108,6 +108,7 @@ class PyMaster:
info = data.split('\0')[1].strip('\\')
split = info.split('\\')
key = None
protocol = None
gamedir = 'valve'
clver = None
@ -125,6 +126,8 @@ class PyMaster:
clver = v
elif k == 'protocol':
protocol = int(v)
elif k == 'key': # defined but not implemented yet
key = v
# somebody is playing :)
elif k == 'thisismypcid' or k == 'heydevelopersifyoureadthis':
self.fakeInfoForOldVersions(gamedir, addr)