change max R from 300 to 500
authorminima <minima>
Mon, 29 Jul 2002 15:08:47 +0000 (15:08 +0000)
committerminima <minima>
Mon, 29 Jul 2002 15:08:47 +0000 (15:08 +0000)
Changes
cmd/wcy.pl

diff --git a/Changes b/Changes
index 3d4c6b240f35cec48a9ef286a6369109a0c24218..c25aca450a542837ac3bb2069d93cf18b58784fd 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+29Jul02=======================================================================
+1.Changed max R value in wcy to 500 from 300.
 28Jul02=======================================================================
 1. stick the invalid key deletes in an eval loop in export_user
 18Jul02=======================================================================
index 58b3c40f5e3aea1be1fe395125f8722b74a0d422..bdd01fc43670c7a0b354d6bd09a4350844ba8bee 100644 (file)
@@ -42,7 +42,7 @@ my %args = map {split /\s*=\s*/} split /\s*,\s*/, lc $line;
 push @out, $self->msg('wcy1', 'k') unless defined $args{k} && $args{k} >= 0 && $args{k} <= 9;
 push @out, $self->msg('wcy1', 'espk') unless defined $args{expk} && $args{expk} >= 0 && $args{expk} <= 9;
 push @out, $self->msg('wcy1', 'a') unless defined $args{a} && $args{a} >= 0 && $args{a} <= 400;
-push @out, $self->msg('wcy1', 'r') unless defined $args{r} && $args{r} >= 0 && $args{r} <= 300;
+push @out, $self->msg('wcy1', 'r') unless defined $args{r} && $args{r} >= 0 && $args{r} <= 500;
 push @out, $self->msg('wcy1', 'sf') unless defined $args{sf} && $args{sf} >= 65 && $args{sf} <= 300;
 push @out, $self->msg('wcy1', 'sa') unless defined $args{sa} && grep $args{sa} eq $_, qw(qui eru act maj pro war nil);
 push @out, $self->msg('wcy1', 'gmf') unless defined $args{gmf} && grep $args{gmf} eq $_, qw(qui act min maj sev mag war nil);