1
0
mirror of https://github.com/demodude4u/Factorio-FBSR.git synced 2024-11-24 08:12:21 +02:00

Fixed blueprintRaw saying it didn't see any bp even when it does

This commit is contained in:
Weston Rye (Demod) 2017-06-29 23:21:38 -04:00
parent 8ec42982d6
commit 572d745be0

View File

@ -257,7 +257,8 @@ public class BlueprintBotDiscordService extends AbstractIdleService {
}
}
if (reporting.getImages().isEmpty() && reporting.getDownloads().isEmpty()) {
if (reporting.getImages().isEmpty() && reporting.getDownloads().isEmpty() && reporting.getWarnings().isEmpty()
&& reporting.getExceptions().isEmpty() && reporting.getInfo().isEmpty()) {
event.getChannel().sendMessage("I can't seem to find any blueprints. :frowning:").complete();
}
sendReport(event, reporting);