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 []; }