--- deliantra/server/ext/dmcommands.ext 2007/01/02 11:08:35 1.6 +++ deliantra/server/ext/dmcommands.ext 2007/01/05 17:07:17 1.10 @@ -77,12 +77,13 @@ my @pl = $map->players; $_->enter_link for @pl; - Coro::async { - Coro::Timer::sleep 10; + Coro::async_pool { + my $name = $map->{path}->as_string; + $map->reset; $_->leave_link for @pl; - $ob->reply (undef, $map->{path}->as_string . " was reset."); + $ob->reply (undef, "$name was reset."); }; 1