Skip to content

Commit

Permalink
MIDAIR: Do not spawn map items
Browse files Browse the repository at this point in the history
  • Loading branch information
deurk committed May 11, 2020
1 parent a5f81c7 commit 0c304ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/match.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,15 +188,15 @@ void ListDemoMarkers()
if ( !demo_marker_index )
return;

G_bprint(2, "%s:\nžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžŸ\n", redtext("Demo markers"));
G_bprint(2, "%s:\n�����������������������������������\n", redtext("Demo markers"));

for (i = 0; i < demo_marker_index; ++i)
{
int total = (int)(demo_markers[i].time - match_start_time);
G_bprint( 2, "%s: %d:%02d \220%s\221\n", redtext("Time"), (total / 60), (total % 60), demo_markers[i].markername);
}

G_bprint(2, "žžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžžŸ\n");
G_bprint(2, "�����������������������������������\n");
}

void EM_on_MatchEndBreak( int isBreak )
Expand Down Expand Up @@ -540,7 +540,7 @@ void SM_PrepareMap()
// going for the if content record..
if ( isRA()
|| isRACE()
|| ( deathmatch == 4 && cvar("k_instagib") )
|| ( deathmatch == 4 && ( cvar("k_instagib") || cvar("k_midair") ) )
|| cvar("k_noitems")
|| k_bloodfest
)
Expand Down

0 comments on commit 0c304ee

Please sign in to comment.