Files

11 lines
303 B
C++
Raw Permalink Normal View History

2024-05-05 07:11:55 +02:00
#include <libultraship/bridge.h>
#include "2s2h/GameInteractor/GameInteractor.h"
2024-05-05 07:11:55 +02:00
void RegisterNoBlastMaskCooldown() {
2024-10-05 10:02:53 -05:00
REGISTER_VB_SHOULD(VB_SET_BLAST_MASK_COOLDOWN_TIMER, {
2024-05-05 07:11:55 +02:00
if (CVarGetInteger("gEnhancements.Masks.NoBlastMaskCooldown", 0)) {
*should = false;
}
});
}