Skip to content

Commit

Permalink
- fixed level number for RRRA's travel animations.
Browse files Browse the repository at this point in the history
first level is 1001, not 1.
  • Loading branch information
coelckers committed Jun 2, 2022
1 parent 0a020e9 commit 126f605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wadsrc/static/zscript/games/duke/ui/cutscenes.zs
Expand Up @@ -363,7 +363,7 @@ class RRCutscenes ui

static void BuildMapIntro(ScreenJobRunner runner, MapRecord map)
{
int ln = map.levelnumber - 1;
int ln = map.levelnumber - 1001;
if (ln == 0) return;
if (ln >= 1000) ln -= 1000-7;

Expand Down

0 comments on commit 126f605

Please sign in to comment.