From f9919925283b9da1dd9054e43fb69534f42dbc26 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Sun, 16 Apr 2023 17:39:51 +0200 Subject: [PATCH] Fix stoplag for ShieldPrinting.apply Signed-off-by: yoyosource --- .../bausystem/features/shieldprinting/ShieldPrinting.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/shieldprinting/ShieldPrinting.java b/BauSystem_Main/src/de/steamwar/bausystem/features/shieldprinting/ShieldPrinting.java index 0ad8d710..e1585fbb 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/shieldprinting/ShieldPrinting.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/shieldprinting/ShieldPrinting.java @@ -70,7 +70,7 @@ public class ShieldPrinting implements Listener { public void apply() { for (Map.Entry entry : shieldData.entrySet()) { - entry.getKey().toLocation(WORLD).getBlock().setBlockData(entry.getValue()); + entry.getKey().toLocation(WORLD).getBlock().setBlockData(entry.getValue(), false); } }