#!/usr/bin/perl
#use Mooix::Thing;
run sub {
	my $this=shift;
	if (! $this->wielded) {
		$this->wield_verb(@_);
		if ($?) {
			fail "You look for some other weapon to attack with.";
		}
	}
	$this->exec->super(@_);
}
