From 740d3cfb95468b5262a2a462b1ffaca3caee6a38 Mon Sep 17 00:00:00 2001 From: PsiRobot Date: Fri, 21 Apr 2023 16:45:24 +0000 Subject: [PATCH] Fix SkullCommand for Bedrock --- .../src/de/steamwar/bausystem/features/util/SkullCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/util/SkullCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/util/SkullCommand.java index b8cce749..9bb2331d 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/util/SkullCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/util/SkullCommand.java @@ -57,7 +57,7 @@ public class SkullCommand extends SWCommand { return new TypeMapper() { @Override public String map(CommandSender commandSender, PreviousArguments previousArguments, String s) { - if (s.endsWith("⍇")) return null; + if (s.startsWith(".")) return null; return s; }