--- deliantra/server/ext/dmcommands.ext 2007/01/01 16:00:10 1.3 +++ deliantra/server/ext/dmcommands.ext 2007/01/02 14:10:23 1.7 @@ -73,7 +73,16 @@ return unless $ob->may ("command_reset"); - die;#d# + my $map = $ob->map; + + my @pl = $map->players; + $_->enter_link for @pl; + Coro::async { + $map->reset; + $_->leave_link for @pl; + + $ob->reply (undef, $map->{path}->as_string . " was reset."); + }; 1 };