Skip to content

Commit

Permalink
Force cast sequence for Legacy Of Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Nov 30, 2024
1 parent 2b973b5 commit a365b17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/f_finale.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,9 @@ void F_Ticker(void)
if (finalecount > FixedMul((fixed_t)strlen(finaletext) * FRACUNIT, TextSpeed()) + (midstage ? NEWTEXTWAIT : TEXTWAIT)
|| (midstage && acceleratestage))
{
if (P_GetMapEndPic(gameepisode, gamemap) > 0)
if (legacyofrust)
F_StartCast();
else if (P_GetMapEndPic(gameepisode, gamemap) > 0)
{
if (P_GetMapEndCast(gameepisode, gamemap))
F_StartCast();
Expand Down

0 comments on commit a365b17

Please sign in to comment.