# HG changeset patch # User truelight # Date 1173969250 0 # Node ID 8a2f24f0c746924f3462a3141d29e01dd2b3923e # Parent 76303a89c056b19f60c584adac77ce01bcad3e33 (svn r9205) -Fix: if you started openttd with '-g' you got the same map every run diff -r 76303a89c056 -r 8a2f24f0c746 src/openttd.cpp --- a/src/openttd.cpp Thu Mar 15 13:17:54 2007 +0000 +++ b/src/openttd.cpp Thu Mar 15 14:34:10 2007 +0000 @@ -419,6 +419,8 @@ _switch_mode = SM_LOAD; } else { _switch_mode = SM_NEWGAME; + /* Give a random map */ + generation_seed = InteractiveRandom(); } break; case 'G': generation_seed = atoi(mgo.opt); break;