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