Fixed issue where points are doubled

This commit is contained in:
Jeroen De Meerleer 2019-02-06 20:10:07 +01:00
parent 93125bb79c
commit 2bc179c0bb
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class Player
*/
public function setPoints($Points): void
{
$this->Points = $Points;
$this->Points = $Points / 2;
}
/**