mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
Merge pull request #238 from cetteup/master
Fix teamOffByOne condition for Battlefield 1942
This commit is contained in:
commit
91d4db40e0
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ class Gamespy1 extends Core {
|
|||
if ('maxplayers' in data) state.maxplayers = parseInt(data.maxplayers);
|
||||
if ('hostport' in data) state.gamePort = parseInt(data.hostport);
|
||||
|
||||
const teamOffByOne = data.gameid === 'bf1942';
|
||||
const teamOffByOne = data.gamename === 'bfield1942';
|
||||
const playersById = {};
|
||||
const teamNamesById = {};
|
||||
for (const ident of Object.keys(data)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue