From 63a97a2bcacfbfb7093a8bed61b6471a2b44a3e0 Mon Sep 17 00:00:00 2001 From: Vivian Lim Date: Sun, 6 Sep 2020 22:57:54 -0700 Subject: [PATCH] add another map to the list --- src/g_game.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index e15294b4..02c442bd 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -3637,7 +3637,10 @@ tryagain: ix = okmaps[M_RandomKey(numokmaps)]; //hack: don't pick any of these maps - if (ix == 35){ // Kodachrome Void + // map numbering seems to start at 0, -1 here + // not sure if this actually works + if (ix == 35 // Kodachrome Void + || ix == 33 ){ // cloud cradle zone goto tryagain; }