From: pdbogen Date: Tue, 24 Jun 2008 01:51:14 +0000 (+0000) Subject: Fix the "huh" for the new destination format. X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=d077dba3378a72a17799571264f463c329cd6c2b;p=destult.git Fix the "huh" for the new destination format. git-svn-id: https://www.cernu.us/~pdbogen/svn/destult2@49 088b83a4-0077-4247-935c-42ec02c2848b --- diff --git a/core.pl b/core.pl index 20c3008..8706b37 100644 --- a/core.pl +++ b/core.pl @@ -161,7 +161,7 @@ sub cmd { } elsif( exists( $heap->{ 'db' }->{ uc( $what ) } ) && !$noparse ) { &{ $heap->{ 'commands' }->{ 'PARSE' } }( $kernel, $heap, $who, $what, $src, { dest => $dest, src=>$who, no_throttle => $no_throttle }, $replypath ); } else { - $kernel->post( $src, "send_private", "Huh?", $who ); + $kernel->post( $src, "send_private", "Huh?", { dest => $who, src => $who } ); } }