forked from GithubMirrors/cardconjurer
Address copyright
- Remove build action - Disable copyright/not for sale/cardconjurer
This commit is contained in:
@@ -1703,7 +1703,11 @@ async function bottomInfoEdited() {
|
||||
card.infoArtist = document.querySelector('#info-artist').value;
|
||||
card.infoYear = document.querySelector('#info-year').value;
|
||||
for (var textObject of Object.entries(card.bottomInfo)) {
|
||||
await writeText(textObject[1], bottomInfoContext);
|
||||
if (["NOT FOR SALE", "Wizards of the Coast", "CardConjurer.com", "cardconjurer.com"].some(v => textObject[1].text.includes(v))) {
|
||||
continue;
|
||||
} else {
|
||||
await writeText(textObject[1], bottomInfoContext);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
drawCard();
|
||||
|
Reference in New Issue
Block a user