Exemplo n.º 1
0
 /**
  *
  * @param Player $player
  */
 public function hidePlayer(Player $player)
 {
     if ($player === $this) {
         return;
     }
     $this->hiddenPlayers[$player->getRawUniqueId()] = $player;
     $player->despawnFrom($this);
 }