Put Memory Card Patch codes in GCT instead of GCI

This commit is contained in:
sup39 2023-02-20 20:04:56 +09:00
parent 9791299788
commit 7ea259a1ee
2 changed files with 5 additions and 1 deletions

View file

@ -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'

View file

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