]> ruin.nu Git - NDIRC.git/blobdiff - Delling.pm
Universal scan parsing
[NDIRC.git] / Delling.pm
index fe35fe131562ee1fecbb8d3f25b3cc82ad0a5ce2..e04619015f4fdb8e8a5fafc39dfb79c75a5f7580 100644 (file)
@@ -237,13 +237,6 @@ after discord_message_create => sub {
 
        say localtime(time) . " - $channel_id $channel $author_name $author_id";
 
-       my ($p,$command,$args) = ($msg =~ /^([.!~])(\S+)(?: (.+))?/);
-
-
-       return 0 unless $self->disp->has_command($command,$channel);
-
-       say localtime(time) . " - $msg";
-
        my $c = NDIRC::DiscordContext->new({
                        discord_id => $author_name,
                        channel_id => $channel_id,
@@ -254,7 +247,7 @@ after discord_message_create => sub {
                        discord => $self->discord,
                });
 
-       return $self->disp->run_command($c,$command,$args);
+       return $self->handleCommand($c,$msg);
 
 };