Skip to content

Commit

Permalink
4
Browse files Browse the repository at this point in the history
  • Loading branch information
sjy7221 committed Apr 3, 2018
1 parent 1c8f400 commit 6684a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/app/Controllers/GameController.php
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ public function getGame(){
}
if($gameInfo['now'] || isset($gameInfo['now'])){
$users = $this->uids;
$users = array_diff($this->uids,$this->mid);
$users = array_diff($this->mid,$this->uids);
$countp = [];
foreach ($users as $k => $v){
$countp[$k] = count($v);
Expand Down

0 comments on commit 6684a2a

Please sign in to comment.