mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
* power crouch stab * update gi enum --------- Co-authored-by: Archez <Archez@users.noreply.github.com>
11 lines
307 B
C++
11 lines
307 B
C++
#include <libultraship/bridge.h>
|
|
#include "Enhancements/GameInteractor/GameInteractor.h"
|
|
|
|
void RegisterPowerCrouchStab() {
|
|
REGISTER_VB_SHOULD(GI_VB_PATCH_POWER_CROUCH_STAB, {
|
|
if (CVarGetInteger("gEnhancements.Restorations.PowerCrouchStab", 0)) {
|
|
*should = false;
|
|
}
|
|
});
|
|
}
|