fix: TeamSpeak2 server name (#544)

* fix teamspeak2 server name

* Update CHANGELOG.md
This commit is contained in:
Pedro Ivo Hudson 2024-02-15 13:29:31 -03:00 committed by GitHub
parent e047f9fb2a
commit cf0144683d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -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`.

View File

@ -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
}
{