Update charts.js

This commit is contained in:
MeowcaTheoRange 2022-04-26 21:28:13 -05:00 committed by GitHub
parent 6459d8727a
commit 2c72687def
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,11 +139,11 @@ export var charts = [
} }
}, },
characters: [ characters: [
["JellyBean", "JellyBean"], ["JellyBean", "JellyBean", (width() / 2) - 162, 0],
["RedVelvety", "RedVelvety"], ["RedVelvety", "RedVelvety", (width() / 2) - 162, 0],
["Marc", "Marc"], ["Marc", "Marc", (width() / 2) - 162, 0],
["CarterRedacted", "CarterRedacted"], ["CarterRedacted", "CarterRedacted", (width() / 2) - 162, 0],
["MarkyMark", "Mark"] ["MarkyMark", "Mark", (width() / 2) - 162, 0]
], ],
noteTypes: { noteTypes: {
"J": noteDefault, "J": noteDefault,
@ -200,7 +200,7 @@ export var charts = [
} }
}, },
characters: [ characters: [
["FaithPlate", "Faith Plate"] ["FaithPlate", "Faith Plate", 0, 0]
], ],
noteTypes: { noteTypes: {
"J": noteDefault, "J": noteDefault,
@ -597,4 +597,4 @@ export function noteDefault(time, letter, prevStep) {
normal: true normal: true
} }
]); ]);
} }