mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-11 14:05:35 +00:00
Entity: Implement setting score tag
This commit is contained in:
parent
bda271ca63
commit
99045fe21a
@ -609,6 +609,20 @@ abstract class Entity extends Location implements Metadatable, EntityIds{
|
|||||||
$this->propertyManager->setByte(self::DATA_ALWAYS_SHOW_NAMETAG, $value ? 1 : 0);
|
$this->propertyManager->setByte(self::DATA_ALWAYS_SHOW_NAMETAG, $value ? 1 : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string|null
|
||||||
|
*/
|
||||||
|
public function getScoreTag() : ?string{
|
||||||
|
return $this->propertyManager->getString(self::DATA_SCORE_TAG);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $score
|
||||||
|
*/
|
||||||
|
public function setScoreTag(string $score) : void{
|
||||||
|
$this->propertyManager->setString(self::DATA_SCORE_TAG, $score);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return float
|
* @return float
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user