The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TAEB::World::ItemPool;
use TAEB::OO;
extends 'NetHack::ItemPool';

use constant inventory_class => 'TAEB::World::Inventory';

has '+inventory' => (
    isa => 'TAEB::World::Inventory',
);

__PACKAGE__->meta->make_immutable;
no TAEB::OO;

1;