Skip to content

Commit 3bfd047

Browse files
authored
Merge pull request #284 from taysta/upstream
Upstream update
2 parents 4f6a618 + 3ba7a71 commit 3bfd047

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

codemp/game/bg_saber.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2450,12 +2450,12 @@ saberMoveName_t PM_SaberAttackForMovement(saberMoveName_t curmove)
24502450
}
24512451
}
24522452

2453-
if (client && client->pers.noCartwheel) {
2453+
if (client && client->pers.noCartwheel && !pm->ps->stats[STAT_RACEMODE]) {
24542454
allowCartwheels = qfalse;
24552455
}
24562456
}
24572457
#else
2458-
if (cgs.serverMod == SVMOD_JAPRO && (cp_pluginDisable.integer & JAPRO_PLUGIN_NOCART)) {
2458+
if (cgs.serverMod == SVMOD_JAPRO && (cp_pluginDisable.integer & JAPRO_PLUGIN_NOCART) && !pm->ps->stats[STAT_RACEMODE]) {
24592459
allowCartwheels = qfalse;
24602460
}
24612461
#endif

codemp/rd-vulkan/tr_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ static qboolean R_MirrorViewBySurface( const drawSurf_t *drawSurf, int entityNum
10541054
return qfalse;
10551055
}
10561056

1057-
if (r_noportals->integer > 1 /*|| (r_fastsky->integer == 1)*/) {
1057+
if (r_noportals->integer > 1 || (r_fastsky->integer == 1)) {
10581058
return qfalse;
10591059
}
10601060

0 commit comments

Comments
 (0)