From 6e372d9e36956c2a6324bb93033e667c94b220f1 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 1 May 2022 14:54:29 +0100 Subject: [PATCH] Entity: fixed setNameTagVisible not having immediately visible effect --- src/entity/Entity.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/entity/Entity.php b/src/entity/Entity.php index 1ca59df1d..2c5adbe98 100644 --- a/src/entity/Entity.php +++ b/src/entity/Entity.php @@ -282,6 +282,7 @@ abstract class Entity{ public function setNameTagVisible(bool $value = true) : void{ $this->nameTagVisible = $value; + $this->networkPropertiesDirty = true; } public function setNameTagAlwaysVisible(bool $value = true) : void{