mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 09:18:31 +01:00
fix: TeamSpeak2 server name (#544)
* fix teamspeak2 server name * Update CHANGELOG.md
This commit is contained in:
parent
e047f9fb2a
commit
cf0144683d
2 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
* Farming Simulator 22 (2021) - Added support (By @Vito0912 #531)
|
||||
* Farming Simulator 19 (2018) - Added support (By @Vito0912 #531)
|
||||
* Assetto Corsa - Fixed how `state.numplayers` is set (By @podrivo #538)
|
||||
* TeamSpeak 2 - Fixed how `state.name` is set (By @podrivo #544)
|
||||
|
||||
## 5.0.0-beta.2
|
||||
* Fixed support for projects using `require`.
|
||||
|
|
|
@ -18,6 +18,7 @@ export default class teamspeak2 extends Core {
|
|||
const value = equals === -1 ? '' : line.substring(equals + 1)
|
||||
state.raw[key] = value
|
||||
}
|
||||
if ('server_name' in state.raw) state.name = state.raw.server_name
|
||||
}
|
||||
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue