Skip to content

Commit

Permalink
Added dead ops arcade game mode for zombies check
Browse files Browse the repository at this point in the history
  • Loading branch information
DeathRGH committed Apr 13, 2024
1 parent c023f3f commit dc65914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BOCW 1.26 ELF/structs.cpp
Expand Up @@ -49,5 +49,5 @@ bool IsInZombies() {
return false;
}

return !strcmp(cgs->gametype, "zclassic") || !strcmp(cgs->gametype, "zsurvival") || !strcmp(cgs->gametype, "zonslaught") || !strcmp(cgs->gametype, "zonslaught_containment");
return !strcmp(cgs->gametype, "zclassic") || !strcmp(cgs->gametype, "zsurvival") || !strcmp(cgs->gametype, "zonslaught") || !strcmp(cgs->gametype, "zonslaught_containment") || !strcmp(cgs->gametype, "doa");
}

0 comments on commit dc65914

Please sign in to comment.