Files
Tweaks/JaysonPlus/Tweak.x
2026-02-24 22:43:32 +01:00

12 lines
174 B
Plaintext

#import <substrate.h>
%hook UnlockEverythingManager
- (BOOL)haveUnlockedEverything {
return TRUE;
}
- (void)setHaveUnlockedEverything:(BOOL)unlocked {
%orig(YES);
}
%end