diff --git a/KaniManabu-macOS/Window Controllers/MainWindowController.m b/KaniManabu-macOS/Window Controllers/MainWindowController.m index dc976e2..40da829 100644 --- a/KaniManabu-macOS/Window Controllers/MainWindowController.m +++ b/KaniManabu-macOS/Window Controllers/MainWindowController.m @@ -592,8 +592,13 @@ - (IBAction)exportdeck:(id)sender { - (void)deckexceedederror { NSAlert *alert = [[NSAlert alloc] init] ; [alert addButtonWithTitle:@"OK"]; +#if defined(AppStore) [alert setMessageText:@"Deck Limit Exceeded"]; alert.informativeText = @"You cannot use this feature since you exceeded the deck limit of 3. Please delete one or more decks or subscribe."; +#else + [alert setMessageText:@"No Patreon License Key"]; + alert.informativeText = @"You cannot use this feature since you do not have an active Patron key. Please enter one or download the App Store version."; +#endif alert.alertStyle = NSAlertStyleInformational; [alert beginSheetModalForWindow:self.window completionHandler:^(NSModalResponse returnCode) { }]; diff --git a/KaniManabu.xcodeproj/project.xcworkspace/xcuserdata/chiyodamomo.xcuserdatad/UserInterfaceState.xcuserstate b/KaniManabu.xcodeproj/project.xcworkspace/xcuserdata/chiyodamomo.xcuserdatad/UserInterfaceState.xcuserstate index e91aa25..ae7a82b 100644 Binary files a/KaniManabu.xcodeproj/project.xcworkspace/xcuserdata/chiyodamomo.xcuserdatad/UserInterfaceState.xcuserstate and b/KaniManabu.xcodeproj/project.xcworkspace/xcuserdata/chiyodamomo.xcuserdatad/UserInterfaceState.xcuserstate differ