Check if holograms are disabled.

This commit is contained in:
Brianna 2019-06-15 08:02:44 -04:00
parent d6b10ddf31
commit 8155fb6c97
2 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@ stages:
variables:
name: "EpicFurnaces"
path: "/builds/$CI_PROJECT_PATH"
version: "4.3.1"
version: "4.3.2"
build:
stage: build

View File

@ -33,6 +33,8 @@ public class HologramTask extends BukkitRunnable {
@Override
public void run() {
if (plugin.getHologram() == null) return;
for (Furnace furnace : plugin.getFurnaceManager().getFurnaces().values()) {
plugin.getHologram().update(furnace);
}