nextmap command

This commit is contained in:
kremsy
2014-01-14 20:35:31 +01:00
committed by Steffen Schröder
parent d79b6fb102
commit a286655da5
2 changed files with 38 additions and 0 deletions

View File

@ -169,6 +169,20 @@ class MapQueue implements CallbackListener, CommandListener {
return $this->nextMap;
}
/**
* Returns the first Queued Map
*
* @return array(Player $player, Map $map)
*/
public function getNextQueuedMap() {
foreach($this->queuedMaps as $queuedMap) {
//return the first Queued Map
return $queuedMap;
}
return null;
}
/**
* Returns a list with the indexes of the queued maps
*