2024-05-23 20:57:33 -05:00
|
|
|
#include <libultraship/bridge.h>
|
2024-10-05 10:33:10 -05:00
|
|
|
#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;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|