--- deliantra/maps/perl/chat.ext 2006/05/07 19:51:50 1.13 +++ deliantra/maps/perl/chat.ext 2006/05/07 20:23:32 1.14 @@ -38,7 +38,7 @@ my $NOW = time; $_->ob->message ("$name chats: $msg", cf::NDI_BLUE) - for grep { $_->ob->{ext_ignore_shout}{$name} and $_->listening >= 10 } < $NOW, cf::player::list; + for grep $_->ob->{ext_ignore_shout}{$name} < $NOW, cf::player::list; } else { $who->message ("Chat what?", cf::NDI_UNIQUE); @@ -53,7 +53,7 @@ my $name = $who->name; $_->ob->message ("$name shouts: $msg", cf::NDI_RED) - for grep { $_->ob->{ext_ignore_shout}{$name} < $NOW and $_->listening >= 2 }, cf::player::list; + for grep $_->ob->{ext_ignore_shout}{$name} < $NOW, cf::player::list; } else { $who->message ("Shout what?", cf::NDI_UNIQUE);