dedimania fix

This commit is contained in:
kremsy
2017-05-20 10:43:14 +02:00
parent 04883a4dc6
commit 6195757f68
2 changed files with 3 additions and 2 deletions

View File

@ -233,12 +233,13 @@ class LocalRecordsPlugin implements ManialinkPageAnswerListener, CallbackListene
$quadStyle = $this->maniaControl->getManialinkManager()->getStyleManager()->getDefaultQuadStyle();
$quadSubstyle = $this->maniaControl->getManialinkManager()->getStyleManager()->getDefaultQuadSubstyle();
$records = $this->getLocalRecords($map, 1000);
$records = $this->getLocalRecords($map, 1000); //TODO limit setting
if (!is_array($records)) {
Logger::logError("Couldn't fetch player records.");
return null;
}
//TODO maybe only store if player is connected
$playerRecords = array();
foreach ($records as $index => $record) {
$playerRecords[$record->playerIndex] = $index;