From 93e4fa806a595fb8bcc4ca3e7c2b6d2e3c5bae41 Mon Sep 17 00:00:00 2001 From: "Weston Rye (Demod)" Date: Tue, 6 Mar 2018 02:20:17 -0500 Subject: [PATCH] fixed dataraw path parsing --- .../src/com/demod/fbsr/app/BlueprintBotDiscordService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FactorioBlueprintStringRenderer/src/com/demod/fbsr/app/BlueprintBotDiscordService.java b/FactorioBlueprintStringRenderer/src/com/demod/fbsr/app/BlueprintBotDiscordService.java index 5a76f3b..e582096 100644 --- a/FactorioBlueprintStringRenderer/src/com/demod/fbsr/app/BlueprintBotDiscordService.java +++ b/FactorioBlueprintStringRenderer/src/com/demod/fbsr/app/BlueprintBotDiscordService.java @@ -98,7 +98,7 @@ public class BlueprintBotDiscordService extends AbstractIdleService { return; } String key = Arrays.asList(args).stream().collect(Collectors.joining()); - String[] path = key.split("."); + String[] path = key.split("\\."); Optional lua = query.apply(path); if (!lua.isPresent()) { event.getChannel()