s/level/world (strings only)

we should look at doing this for code too, but for now I'm not planning to break everyone's plugins.
This commit is contained in:
Dylan K. Taylor
2019-02-20 15:33:46 +00:00
parent 9354929cad
commit 58cafc853f
7 changed files with 23 additions and 23 deletions

View File

@ -1577,7 +1577,7 @@ class Server{
}
public function reload(){
$this->logger->info("Saving levels...");
$this->logger->info("Saving worlds...");
foreach($this->levelManager->getLevels() as $level){
$level->save();
@ -1653,7 +1653,7 @@ class Server{
}
if($this->levelManager instanceof LevelManager){
$this->getLogger()->debug("Unloading all levels");
$this->getLogger()->debug("Unloading all worlds");
foreach($this->levelManager->getLevels() as $level){
$this->levelManager->unloadLevel($level, true);
}