1
0
mirror of https://github.com/demodude4u/Factorio-FBSR.git synced 2024-12-24 10:27:04 +02:00

fixed dataraw path parsing

This commit is contained in:
Weston Rye (Demod) 2018-03-06 02:20:17 -05:00
parent 23ec85b6e7
commit 93e4fa806a

View File

@ -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<LuaValue> lua = query.apply(path);
if (!lua.isPresent()) {
event.getChannel()