K_UsingPowerLevels: Disable PWR if a roundqueue is in action

This commit is contained in:
toaster 2023-04-10 13:36:35 +01:00
parent 5751ecdcd1
commit 487ec6db74

View file

@ -39,7 +39,7 @@ SINT8 K_UsingPowerLevels(void)
{
SINT8 pt = PWRLV_DISABLED;
if (!cv_kartusepwrlv.value || !(netgame || (demo.playback && demo.netgame)) || grandprixinfo.gp == true)
if (!cv_kartusepwrlv.value || !(netgame || (demo.playback && demo.netgame)) || grandprixinfo.gp == true || roundqueue.size > 0)
{
return PWRLV_DISABLED;
}