Compute the maximum number of bases from BASEMAX.
[super-star-trek.git] / setup.c
diff --git a/setup.c b/setup.c
index 17c14cf030e59b231e24d6f5e3e8911178650dd7..f50f7c41e02acd3333a257470da5cac1e498aace 100644 (file)
--- a/setup.c
+++ b/setup.c
@@ -469,7 +469,7 @@ int choose(int needprompt)
 
     // Use parameters to generate initial values of things
     damfac = 0.5 * skill;
-    game.state.rembase = 3.0*Rand()+2.0;
+    game.state.rembase = 2.0 + Rand()*(MAXBASES-2.0);
     inbase = game.state.rembase;
     if (game.options & OPTION_PLANETS)
        inplan = (PLNETMAX/2) + (PLNETMAX/2+1)*Rand();