diff --git a/CHANGELOG.md b/CHANGELOG.md index e56e40a..212c54f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## To Be Released... +## 5.0.0-beta.1 +* Fixed numplayers on Palworld not beeing accurate ## 5.0.0-beta.0 ### Breaking Changes diff --git a/protocols/palworld.js b/protocols/palworld.js index 973db49..33ca9c8 100644 --- a/protocols/palworld.js +++ b/protocols/palworld.js @@ -14,5 +14,6 @@ export default class palworld extends Epic { async run (state) { await super.run(state) state.name = state.raw.attributes.NAME_s + state.numplayers = state.raw.attributes.PLAYERS_l } }