Fairly interesting... Fixing #2

This commit is contained in:
Ad5001 2017-11-11 00:27:11 +01:00
parent 6a5ddcd42d
commit 5e42ed41c4
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class ClosestPlayer extends Selector{
// Console
if(!($sender instanceof Player)) {
if(count($online) > 0){
return [$online[0]];
return [$online[array_keys($online)[0]]];
} else {
return [$sender->getName()];
}