Put Memory Card Patch codes in GCT instead of GCI
This commit is contained in:
parent
9791299788
commit
7ea259a1ee
2 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
## Feb 20, 2023
|
||||||
|
Put Memory Card Patch codes in GCT instead of GCI
|
||||||
|
|
||||||
## Feb 13, 2023
|
## Feb 13, 2023
|
||||||
- Added 'Mario State Savestate'
|
- Added 'Mario State Savestate'
|
||||||
- Added 'No Shine Get Animation'
|
- Added 'No Shine Get Animation'
|
||||||
|
|
|
@ -83,7 +83,8 @@ export default {
|
||||||
format = formats[1];
|
format = formats[1];
|
||||||
const codeListGCT = [];
|
const codeListGCT = [];
|
||||||
const codeListGCI = codeList.splice(0).flatMap(c => {
|
const codeListGCI = codeList.splice(0).flatMap(c => {
|
||||||
if (c.id === 'IntroSkip') { // TODO
|
// TODO
|
||||||
|
if (c.id === 'IntroSkip' || c.category === 'memcardpatch') {
|
||||||
codeListGCT.push(c);
|
codeListGCT.push(c);
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue