#!/usr/bin/perl
#use Mooix::Thing;
run sub {
	my $this=shift;
	%_=@_;
	
	# Make sure that this command is not spoofed, just in case.
        if ($_{avatar} != $this) {
		fail "No!"; 
	}
	
	if ($_{direct_object}) {
		$this->msg('directed_yell', %_);
	}
	else {
		$this->msg('yell', %_);
	}
}
