Return id instead of elo

Fixes gh-6
This commit is contained in:
Jeroen De Meerleer 2019-09-25 12:27:41 +02:00
parent 57de5d5a9c
commit e28cff4e8f
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 1 additions and 1 deletions

View File

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