Load the author nickname of a map when the author is known

This commit is contained in:
Beu
2022-03-12 19:34:39 +01:00
parent b4228a19c8
commit d5faaf57ff
2 changed files with 17 additions and 3 deletions

View File

@ -595,7 +595,7 @@ class MapManager implements CallbackListener, CommunicationListener, UsageInform
* @return Map
*/
public function initializeMap($rpcMap) {
$map = new Map($rpcMap);
$map = new Map($this->maniaControl, $rpcMap);
$this->saveMap($map);
return $map;
}