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; }