mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-04-24 23:07:11 -05:00
Remove the gear links for now since Nintendo disabled them
This commit is contained in:
parent
11372de7db
commit
6fa9f209f0
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user