mirror of
https://github.com/tribufu/node-gamedig
synced 2026-06-01 09:42:41 +00:00
fix: xonotic player names being reported as numbers (#580)
* fix: xonotic player names being reported as numbers * changelog
This commit is contained in:
parent
cfd5614353
commit
5210f523b4
4 changed files with 20 additions and 2 deletions
16
protocols/xonotic.js
Normal file
16
protocols/xonotic.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import quake3 from './quake3.js'
|
||||
|
||||
export default class xonotic extends quake3 {
|
||||
async run (state) {
|
||||
await super.run(state)
|
||||
|
||||
// Sometimes, the server returns a player's name as a number (which seems to be the team?) and the name in
|
||||
// an extra field called "address", we are not sure of this behaviour nor if this is a good enough solution
|
||||
for (const player of state.players) {
|
||||
if (!isNaN(player.name) && player.raw.address) {
|
||||
player.raw.team = player.name
|
||||
player.name = player.raw.address
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue