#!/usr/bin/perl
#use Mooix::Thing;
run sub {
	my $this=shift;

	unless ($this->defines("used") && $this->used) {
		# the consumable starts out life full
		$this->mass($this->startmass);
		$this->volume($this->startvolume);
	}
	return $this->super(@_);
}
