mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-10-31 20:56:08 +01:00
Merge branch 'bugfix/noresult' into develop
This commit is contained in:
commit
89a58a00de
@ -12,6 +12,7 @@ use MyCLabs\Enum\Enum;
|
||||
|
||||
class Gameresult extends Enum
|
||||
{
|
||||
const None = '-';
|
||||
const WhiteWins = '1-0';
|
||||
const Draw = '0.5-0.5';
|
||||
const BlackWins = '0-1';
|
||||
|
@ -35,6 +35,12 @@ class Game extends GameModel
|
||||
if (isset($blacksplit[1]) && $blacksplit[1] != 'Bye') {
|
||||
$special = ' ' . $blacksplit[1];
|
||||
}
|
||||
if ($whitesplit[0] == '*') {
|
||||
$whitesplit[0] = '';
|
||||
}
|
||||
if ($blacksplit[0] == '*') {
|
||||
$blacksplit[0] = '';
|
||||
}
|
||||
$result = new Gameresult($whitesplit[0] . '-' . $blacksplit[0] . $special);
|
||||
$this->setResult($result);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user