Files

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

2024-05-23 20:57:33 -05:00
#include <libultraship/bridge.h>
#include "2s2h/GameInteractor/GameInteractor.h"
2024-05-23 20:57:33 -05:00
void RegisterUnrestrictedItems() {
2024-10-05 10:02:53 -05:00
REGISTER_VB_SHOULD(VB_ITEM_BE_RESTRICTED, {
2024-05-23 20:57:33 -05:00
if (CVarGetInteger("gCheats.UnrestrictedItems", 0)) {
*should = false;
}
});
}