diff options
author | Phil Burton <philbeansburton@gmail.com> | 2012-07-12 11:00:53 +0100 |
---|---|---|
committer | Phil Burton <philbeansburton@gmail.com> | 2012-07-12 11:00:53 +0100 |
commit | e0c13d3ade199417952c9b31c97e8e1bb39aab0b (patch) | |
tree | 64fa067f1ef5f07c25043372386d04632a97d0ee | |
parent | 153af377c6fe874da0ee0819b0ce08f108f3d22a (diff) |
Fixed the max value for 'internet' array
-rw-r--r-- | blarandom.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/blarandom.cpp b/blarandom.cpp index fda149c..894d47a 100644 --- a/blarandom.cpp +++ b/blarandom.cpp @@ -33,6 +33,7 @@ v0.7 - Added thebluelist (this should really be a separate file) (JR) v0.71 - Added more thebluelist options (JR) v0.8 - Added 'internet' function (PGB) + v0.81 - Changed max value for 'interent' array to 18. */ @@ -45,7 +46,7 @@ int main() { - std::string version = "0.8"; + std::string version = "0.8.1"; RandomLib::Random r; // Create r r.Reseed(); // and give it a unique seed @@ -141,7 +142,7 @@ int main() { wolf = true; } else if (!args[0].compare("internet")) { min = 0; - max = 120; + max = 18; internet = true; } |