Fixed issue where points are doubled

This commit is contained in:
Jeroen De Meerleer 2019-02-06 20:10:07 +01:00
parent b6268eac52
commit e4097c93f3

View File

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