SPIGOT-6532: Fix Entity#setGlowing

This commit is contained in:
md_5 2021-06-13 08:26:10 +10:00
parent 384e116efc
commit bc835ae644
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -928,7 +928,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
@Override
public void setGlowing(boolean flag) {
getHandle().setGlowingTag(true);
getHandle().setGlowingTag(flag);
}
@Override