--- deliantra/server/ext/commands.ext 2007/03/18 03:05:40 1.38 +++ deliantra/server/ext/commands.ext 2007/04/02 19:56:11 1.39 @@ -255,7 +255,8 @@ return $ob->reply (undef, sprintf "Output rate is presently %dbps.", $ob->contr->ns->max_rate / $cf::TICK) unless $arg > 0; - $ob->contr->ns->max_rate ($arg * $cf::TICK); + # minimum is 2k/s + $ob->contr->ns->max_rate ((List::Util::max 2048, $arg) * $cf::TICK); $ob->reply (undef, sprintf "Output rate now set to %dbps.", $ob->contr->ns->max_rate / $cf::TICK); 1