Skip to content

Commit

Permalink
Add iOS broken dashes to emptylb autorespond
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgeiss0702 authored Dec 7, 2023
1 parent 2b9becb commit f45e461
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class EmptyLBResponder extends Responder {
@Override
public Response checkForResponse(Member author, Message message) {
String c = message.getContentStripped().toLowerCase(Locale.ROOT);
if(!c.contains("---")) return null;
if(!c.contains("---") && !c.contains("—-")) return null;

if(r == null && RESPONSES != null) {
r = new Response(80, RESPONSES.get("emptylb").getAsString());
Expand Down

0 comments on commit f45e461

Please sign in to comment.