Remove the gear links for now since Nintendo disabled them

This commit is contained in:
Matt Isenhower 2023-03-15 10:25:28 -07:00
parent 11372de7db
commit 6fa9f209f0
2 changed files with 12 additions and 2 deletions

View File

@ -34,7 +34,13 @@ export default class DailyDropGearStatus extends StatusGenerator
return `${icon} ${name} with ${power}`;
}).join('\n');
return `The Daily Drop: Today's featured brand is ${brand.brand.name}! #dailydrop\n\n${formattedGears}\n\n🛒 Order: https://splatoon3.ink/nso/g/`;
return [
`The Daily Drop: Today's featured brand is ${brand.brand.name}! #dailydrop`,
'',
formattedGears,
// '',
// `🛒 Order: https://splatoon3.ink/nso/g/`
].join('\n');
}
/** @param {ScreenshotHelper} screenshotHelper */

View File

@ -29,7 +29,11 @@ export default class RegularGearStatus extends StatusGenerator
let power = gear.gear.primaryGearPower.name;
let url = `https://splatoon3.ink/nso/g/${gear.id}`;
return `Up now on SplatNet: ${icon} ${name} with ${power} #splatnet3\n\n🛒 Order: ${url}`;
return [
`Up now on SplatNet: ${icon} ${name} with ${power} #splatnet3`,
// '',
// `🛒 Order: ${url}`,
].join('\n');
}
/** @param {ScreenshotHelper} screenshotHelper */