Merge branch 'develop' into task/reader/swar

This commit is contained in:
Jeroen De Meerleer 2019-09-25 12:33:38 +02:00
commit 44175fd47d
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@
## vx.y.z (Release: aa-bbb-cccc)
* NEW READER: `swar-4` for reading out files created with Swar version 4.
* BUGFIX: `Player:GetId` returns elo instead of id
## v1.1.2 (Release: 21-jun-2019)
* ENHANCEMENT: Added update section to dist/readme.md
@ -37,4 +38,4 @@
* BUGFIX: `Round::getBye()` did not return bye players
## v1.0 (Released: 03-jun-2019)
* Initial release
* Initial release

View File

@ -135,7 +135,7 @@ class Player
*/
public function getId(string $type): string
{
return $this->getElos()[$type];
return $this->getIds()[$type];
}
/**