Skip to content

Commit

Permalink
Update update-set-implementation-lists.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ExpensiveKoala authored Sep 29, 2024
1 parent 50274fa commit 18101a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-set-implementation-lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
const cardPath = path.join('Mage.Sets', 'src', 'mage', 'cards', className.substring(0, 1), `${className.charAt(0).toUpperCase()+className.slice(1)}.java`);
const claimed = false;
issueComments && issueComments.forEach(comment => {
if (comment.body && comment.body.search(new RegExp(cleanCardName, "i") != -1) {
if (comment.body && comment.body.search(new RegExp(cleanCardName, "i")) != -1) {
console.log(`Found a comment by ${comment.user.login} claiming card ${cardData[0]}`);
claimed = true;
}
Expand Down

0 comments on commit 18101a3

Please sign in to comment.