summaryrefslogtreecommitdiff
path: root/blarandom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'blarandom.cpp')
-rw-r--r--blarandom.cpp5
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;
}