Add one extra skill.

Prevent mp items from spawning on skills 5 and 6.
Disable store on skills 5 and 6.
Fix Shotgunners dropping Wallbusters in Doom 1.
Fix episode/skill menus being compacted when they have more than 5 text items.
Tweak message boxes.
This commit is contained in:
Mari the Deer 2021-03-19 17:14:33 +01:00
commit 761042e200
9 changed files with 199 additions and 37 deletions

View file

@ -331,7 +331,7 @@ Class DemolitionistMenu : GenericMenu
tabs.Push(TAB_INVENTORY);
tabs.Push(TAB_KEYS);
tabs.Push(TAB_LIBRARY);
if ( !deathmatch ) tabs.Push(TAB_STORE);
if ( !deathmatch && (G_SkillPropertyInt(SKILLP_ACSReturn) < 4) ) tabs.Push(TAB_STORE);
for ( int i=0; i<MAXPLAYERS; i++ )
{
if ( !playeringame[i] || (i == consoleplayer) ) continue;