Use correct value for pack_code, add cycle_prefix

This commit is contained in:
Adam Goldsmith 2021-09-08 19:57:42 -04:00
parent 8db642fd48
commit c7b81daa01
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
// TODO: should be defined in strange eons somewhere
const pack_code = "42";
const pack_code = "kyo_player";
const cycle_prefix = "42";
function renameSlot(slot) {
if (slot.startsWith('1 ')) {
@ -91,7 +92,7 @@ function build_card(component) {
return str;
}
var code = pack_code + leftPad(String(component.settings.get('CollectionNumber')), 3, '0');
var code = cycle_prefix + leftPad(String(component.settings.get('CollectionNumber')), 3, '0');
var card_data = {
code: String(code),