Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions codemp/game/bg_saber.c
Original file line number Diff line number Diff line change
Expand Up @@ -2450,12 +2450,12 @@ saberMoveName_t PM_SaberAttackForMovement(saberMoveName_t curmove)
}
}

if (client && client->pers.noCartwheel) {
if (client && client->pers.noCartwheel && !pm->ps->stats[STAT_RACEMODE]) {
allowCartwheels = qfalse;
}
}
#else
if (cgs.serverMod == SVMOD_JAPRO && (cp_pluginDisable.integer & JAPRO_PLUGIN_NOCART)) {
if (cgs.serverMod == SVMOD_JAPRO && (cp_pluginDisable.integer & JAPRO_PLUGIN_NOCART) && !pm->ps->stats[STAT_RACEMODE]) {
allowCartwheels = qfalse;
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion codemp/rd-vulkan/tr_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ static qboolean R_MirrorViewBySurface( const drawSurf_t *drawSurf, int entityNum
return qfalse;
}

if (r_noportals->integer > 1 /*|| (r_fastsky->integer == 1)*/) {
if (r_noportals->integer > 1 || (r_fastsky->integer == 1)) {
return qfalse;
}

Expand Down