removed weird == null comparing

This commit is contained in:
Steffen Schröder
2014-03-31 21:54:51 +02:00
parent d6cbba3d4b
commit fd0d84dfb0
7 changed files with 10 additions and 20 deletions

View File

@ -109,7 +109,7 @@ class Player {
$this->joinTime = time();
if ($this->nickname == null || $this->nickname == '') {
if (!$this->nickname) {
$this->nickname = $this->login;
}
}