#!/usr/bin/perl
#use Mooix::Thing;
run sub {
	my $this=shift;
	%_=@_;
	my $avatar=$_{avatar};

	if ($this->location != $avatar) {
		fail "You are not holding that.";
	}
	$this->msg('drop', %_);
	if (! $this->drop(to => $avatar->location)) {
		fail "For some reason, you cannot drop it!";
	}
}
