Remove "global" wording for now

This commit is contained in:
Matt Isenhower 2023-11-10 07:46:40 -05:00
parent 68ec694ec6
commit b3104f01a7
2 changed files with 6 additions and 6 deletions

View File

@ -37,7 +37,7 @@ export default class SchedulesStatus extends StatusGenerator
let festProStages = stages.splatfestPro.settings.vsStages;
let lines = [
'Join the global Splatfest Battle! #splatfest #maprotation',
'Join the Splatfest Battle! #splatfest #maprotation',
'',
` Open: ${festOpenStages[0].name} and ${festOpenStages[1].name}`,
` Pro: ${festProStages[0].name} and ${festProStages[1].name}`,

View File

@ -69,15 +69,15 @@ export default class SplatfestStatus extends StatusGenerator
switch (state) {
case 'upcoming':
return `You can now vote in the next global Splatfest: ${festival.title} #splatfest #splatoon3`;
return `You can now vote in the next Splatfest: ${festival.title} #splatfest #splatoon3`;
case 'upcoming:3d':
return `Reminder: The next global Splatfest starts in 3 DAYS! ${festival.title} #splatfest #splatoon3`
return `Reminder: The next Splatfest starts in 3 DAYS! ${festival.title} #splatfest #splatoon3`
case 'upcoming:1d':
return `Reminder: The next global Splatfest starts in 24 HOURS! ${festival.title} #splatfest #splatoon3`
return `Reminder: The next Splatfest starts in 24 HOURS! ${festival.title} #splatfest #splatoon3`
case 'active':
return `The global Splatfest is NOW OPEN! ${festival.title} #splatfest #splatoon3`
return `The Splatfest is NOW OPEN! ${festival.title} #splatfest #splatoon3`
case 'ended':
return `The global Splatfest is now closed. Results are usually posted within 2 hours! #splatfest #splatoon3`
return `The Splatfest is now closed. Results are usually posted within 2 hours! #splatfest #splatoon3`
}
}