Skip to content

Commit

Permalink
Tweak order of monsters in player stats again
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Nov 11, 2023
1 parent 1d1f19d commit ea3b30e
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions src/c_cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -5820,22 +5820,20 @@ static void C_PlayerStats_Game(void)
if (gamemode == commercial)
ShowMonsterKillStat_Game(tabs, MT_CHAINGUY);

ShowMonsterKillStat_Game(tabs, MT_SKULL);
ShowMonsterKillStat_Game(tabs, MT_HEAD);
ShowMonsterKillStat_Game(tabs, MT_SKULL);

if (gamemode == commercial)
{
ShowMonsterKillStat_Game(tabs, MT_KNIGHT);
ShowMonsterKillStat_Game(tabs, MT_PAIN);
ShowMonsterKillStat_Game(tabs, MT_FATSO);
}

ShowMonsterKillStat_Game(tabs, MT_BRUISER);

if (gamemode == commercial)
{
ShowMonsterKillStat_Game(tabs, MT_BABY);
ShowMonsterKillStat_Game(tabs, MT_UNDEAD);
ShowMonsterKillStat_Game(tabs, MT_BABY);
ShowMonsterKillStat_Game(tabs, MT_FATSO);
ShowMonsterKillStat_Game(tabs, MT_PAIN);
ShowMonsterKillStat_Game(tabs, MT_VILE);
}

Expand Down Expand Up @@ -6341,22 +6339,20 @@ static void C_PlayerStats_NoGame(void)
if (gamemode == commercial)
ShowMonsterKillStat_NoGame(tabs, MT_CHAINGUY);

ShowMonsterKillStat_NoGame(tabs, MT_SKULL);
ShowMonsterKillStat_NoGame(tabs, MT_HEAD);
ShowMonsterKillStat_NoGame(tabs, MT_SKULL);

if (gamemode == commercial)
{
ShowMonsterKillStat_NoGame(tabs, MT_KNIGHT);
ShowMonsterKillStat_NoGame(tabs, MT_PAIN);
ShowMonsterKillStat_NoGame(tabs, MT_FATSO);
}

ShowMonsterKillStat_NoGame(tabs, MT_BRUISER);

if (gamemode == commercial)
{
ShowMonsterKillStat_NoGame(tabs, MT_BABY);
ShowMonsterKillStat_NoGame(tabs, MT_UNDEAD);
ShowMonsterKillStat_NoGame(tabs, MT_BABY);
ShowMonsterKillStat_NoGame(tabs, MT_FATSO);
ShowMonsterKillStat_NoGame(tabs, MT_PAIN);
ShowMonsterKillStat_NoGame(tabs, MT_VILE);
}

Expand Down

0 comments on commit ea3b30e

Please sign in to comment.