From 4fca055164111a4d4409b457da1078b585abf027 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Tue, 17 Jan 2023 19:10:15 +0100 Subject: [PATCH] Fix: Public Schems BreadCrumps --- .../de/steamwar/schematicsystem/commands/SchematicCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommand.java b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommand.java index 2199788..d5885be 100644 --- a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommand.java +++ b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommand.java @@ -121,7 +121,7 @@ public class SchematicCommand extends SWCommand { @Register({"info", "public"}) public void schemInfoPublic(Player player, @Mapper("publicMapper") SchematicNode node) { - schemInfo(player, node); + schemInfo(player, SchematicNode.getSchematicNode(node.getId())); } @Register({"l", "public"})