mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 01:46:04 +00:00
World: added setDisplayName()
this is an obvious use case, and I'm not really sure why it wasn't supported sooner.
This commit is contained in:
@ -34,6 +34,8 @@ interface WorldData{
|
||||
|
||||
public function getName() : string;
|
||||
|
||||
public function setName(string $value) : void;
|
||||
|
||||
/**
|
||||
* Returns the generator name
|
||||
*/
|
||||
|
@ -116,6 +116,10 @@ abstract class BaseNbtWorldData implements WorldData{
|
||||
return $this->compoundTag->getString(self::TAG_LEVEL_NAME);
|
||||
}
|
||||
|
||||
public function setName(string $value) : void{
|
||||
$this->compoundTag->setString(self::TAG_LEVEL_NAME, $value);
|
||||
}
|
||||
|
||||
public function getGenerator() : string{
|
||||
return $this->compoundTag->getString(self::TAG_GENERATOR_NAME, "DEFAULT");
|
||||
}
|
||||
|
Reference in New Issue
Block a user