Removed LevelAPI::isLoaded()

Not needed, everything can be obtained with current methods
This commit is contained in:
Shoghi Cervantes 2013-12-01 22:01:04 +01:00
parent d515da8963
commit 230a3c00fc

View File

@ -32,14 +32,6 @@ class LevelAPI{
}
return false;
}
public function isLoaded($name){
if(isset($this->levels[$name])){
return true;
}else{
return false;
}
}
public function getDefault(){
return $this->levels[$this->default];