X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=setup.c;h=8499184ad3d28cbad893732f1a83508c5118dc96;hb=c852e04ec5d3c05393db8f655647a55bd47cfc82;hp=88884671d08a488c83ddda8e44045680c4ef9b3b;hpb=6b396c7a585fcf5c54caf29c527b195999d23bfe;p=super-star-trek.git diff --git a/setup.c b/setup.c index 8888467..8499184 100644 --- a/setup.c +++ b/setup.c @@ -473,12 +473,18 @@ int choose(int needprompt) proutn("Choose your game options: "); scan(); } - if (isit("plain")) + if (isit("plain")) { // Approximates the UT FORTRAN version. game.options &=~ (OPTION_THOLIAN | OPTION_PLANETS | OPTION_THINGY | OPTION_PROBE | OPTION_RAMMING | OPTION_MVBADDY | OPTION_BLKHOLE | OPTION_BASE); - if (isit("almy")) + game.options |= OPTION_PLAIN; + } + else if (isit("almy")) { // Approximates Tom Almy's version. game.options &=~ (OPTION_THINGY | OPTION_BLKHOLE | OPTION_BASE); + game.options |= OPTION_ALMY; + } + else if (isit("fancy")) + /* do nothing */; else if (strlen(citem)) { proutn("What is \""); proutn(citem);