#!/usr/bin/perl
#use Mooix::Thing;
#use Mooix::Verb;
use POSIX;
run sub {
	my $this=shift;
	%_=@_;
	
	if ($_{avatar} != $this->owner) {
		exit Mooix::Verb::SKIP;
	}
	
	if (! $_{avatar}->debugging) {
		fail "You do not have debugging turned on.";
	}
	
	if ($this->signal(with => SIGCONT, method => "log")) {
		$_{session}->write("Continuing.");
	}
	else {
		fail "Unable to continue (not stopped?)";
	}
}
