Skip to content

Commit

Permalink
Allow for more flexibility in how often run_moderatord is run.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiemccarthy committed Oct 21, 2003
1 parent 68aab7a commit 6b49c7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Slash/DB/Static/MySQL/MySQL.pm
Expand Up @@ -783,7 +783,7 @@ sub convert_tokens_to_points {

# Sanity check.
my $n_users = $self->countUsers();
$n_wanted = int($n_users/100) if $n_wanted > int($n_users)/100;
$n_wanted = int($n_users/10) if $n_wanted > int($n_users)/10;

my $maxtokens = $constants->{maxtokens} || 60;
my $tokperpt = $constants->{tokensperpoint} || 8;
Expand Down

0 comments on commit 6b49c7d

Please sign in to comment.