- apparently, this was broken before which is why this neeeded this commit in the first place, but now it's been fixed in the official distribution, which makes this commit unnecessary. Or so I am told.
Revert "make the broken ID24 levelnums work somehow so that Legacy of Rust's intermissions play."
This reverts commit 59b567689a.
This commit is contained in:
parent
f21b68c8f6
commit
ec8e0e667c
4 changed files with 6 additions and 16 deletions
|
|
@ -302,7 +302,7 @@ private:
|
|||
auto* li = FindLevelInfo(state != StatCount ? wbs->next.GetChars() : wbs->current.GetChars());
|
||||
if (!li)
|
||||
return false;
|
||||
if (li->broken_id24_levelnum != condition.param)
|
||||
if (li->levelnum != condition.param)
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
|
|
@ -311,7 +311,7 @@ private:
|
|||
auto* li = FindLevelInfo(state != StatCount ? wbs->next.GetChars() : wbs->current.GetChars());
|
||||
if (!li)
|
||||
return false;
|
||||
if (li->broken_id24_levelnum <= condition.param)
|
||||
if (li->levelnum <= condition.param)
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue