From 7ea259a1eea6641e61c916a2173347325edd9d8e Mon Sep 17 00:00:00 2001 From: sup39 Date: Mon, 20 Feb 2023 20:04:56 +0900 Subject: [PATCH] Put Memory Card Patch codes in GCT instead of GCI --- changelog.md | 3 +++ site/.vuepress/components/DownloadButton.vue | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index ac3e96c..6cf45b6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,7 @@ # Changelog +## Feb 20, 2023 +Put Memory Card Patch codes in GCT instead of GCI + ## Feb 13, 2023 - Added 'Mario State Savestate' - Added 'No Shine Get Animation' diff --git a/site/.vuepress/components/DownloadButton.vue b/site/.vuepress/components/DownloadButton.vue index 42ca6c7..522cdc8 100644 --- a/site/.vuepress/components/DownloadButton.vue +++ b/site/.vuepress/components/DownloadButton.vue @@ -83,7 +83,8 @@ export default { format = formats[1]; const codeListGCT = []; const codeListGCI = codeList.splice(0).flatMap(c => { - if (c.id === 'IntroSkip') { // TODO + // TODO + if (c.id === 'IntroSkip' || c.category === 'memcardpatch') { codeListGCT.push(c); return []; }