From 5fda841f27782dca77001c8f8dbfadcfbcaf4914 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Fri, 5 Aug 2022 12:58:38 +0200 Subject: [PATCH] Wrong name --- .../de/steamwar/schematicsystem/commands/DownloadCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/DownloadCommand.java b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/DownloadCommand.java index 62ca934..08e8ea3 100644 --- a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/DownloadCommand.java +++ b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/DownloadCommand.java @@ -37,10 +37,10 @@ public class DownloadCommand extends SWCommand { @Register(help = true) public void genericCommand(Player player, String... args) { SteamwarUser user = SteamwarUser.get(player); - SchematicNode copyNode = SchematicNode.getSchematicNode(user.getId(), "/copy", 0); + SchematicNode copyNode = SchematicNode.getSchematicNode(user.getId(), "//copy", 0); boolean newSchem = false; if(copyNode == null) { - copyNode = SchematicNode.createSchematicNode(user.getId(), "/copy", 0, SchematicType.Normal.toDB(), ""); + copyNode = SchematicNode.createSchematicNode(user.getId(), "//copy", 0, SchematicType.Normal.toDB(), ""); newSchem = true; }