Merge branch 'stable'

This commit is contained in:
Dylan K. Taylor
2020-02-11 19:12:39 +00:00
2 changed files with 9 additions and 3 deletions

View File

@ -375,6 +375,7 @@ class Chunk{
public function setPopulated(bool $value = true) : void{
$this->terrainPopulated = $value;
$this->dirtyFlags |= self::DIRTY_FLAG_TERRAIN;
}
public function isGenerated() : bool{
@ -383,6 +384,7 @@ class Chunk{
public function setGenerated(bool $value = true) : void{
$this->terrainGenerated = $value;
$this->dirtyFlags |= self::DIRTY_FLAG_TERRAIN;
}
public function addEntity(Entity $entity) : void{