diff --git a/server/chat-plugins/helptickets.ts b/server/chat-plugins/helptickets.ts index 86e3665db8..2536015c42 100644 --- a/server/chat-plugins/helptickets.ts +++ b/server/chat-plugins/helptickets.ts @@ -273,7 +273,7 @@ export class HelpTicket extends Rooms.RoomGame { break; case 'PM Harassment': case 'Battle Harassment': - case 'Inappropriate Username / Status Message': + case 'Inappropriate Username': case 'Inappropriate Pokemon Nicknames': this.result = (result ? 'valid' : 'invalid'); break; @@ -512,7 +512,7 @@ for (const room of Rooms.rooms.values()) { const ticketTitles: {[k: string]: string} = Object.assign(Object.create(null), { pmharassment: `PM Harassment`, battleharassment: `Battle Harassment`, - inapname: `Inappropriate Username / Status Message`, + inapname: `Inappropriate Username`, inappokemon: `Inappropriate Pokemon Nicknames`, appeal: `Appeal`, ipappeal: `IP-Appeal`, @@ -524,7 +524,7 @@ const ticketPages: {[k: string]: string} = Object.assign(Object.create(null), { report: `I want to report someone`, pmharassment: `Someone is harassing me in PMs`, battleharassment: `Someone is harassing me in a battle`, - inapname: `Someone is using an offensive username or status message`, + inapname: `Someone is using an offensive username`, inappokemon: `Someone is using offensive Pokemon nicknames`, appeal: `I want to appeal a punishment`, @@ -544,7 +544,7 @@ const ticketPages: {[k: string]: string} = Object.assign(Object.create(null), { confirmpmharassment: `Report harassment in a private message (PM)`, confirmbattleharassment: `Report harassment in a battle`, - confirminapname: `Report an inappropriate username or status message`, + confirminapname: `Report an inappropriate username`, confirminappokemon: `Report inappropriate Pokemon nicknames`, confirmappeal: `Appeal your lock`, confirmipappeal: `Appeal IP lock`, @@ -633,7 +633,7 @@ export const pages: PageTable = { buf += `

`; break; case 'inapname': - buf += `

If a user has an inappropriate name or status message, click the button below and a global staff member will take a look.

`; + buf += `

If a user has an inappropriate name, click the button below and a global staff member will take a look.

`; if (!isLast) break; buf += `

`; break; @@ -1107,7 +1107,7 @@ export const commands: ChatCommands = { const contexts: {[k: string]: string} = { 'PM Harassment': `Hi! Who was harassing you in private messages?`, 'Battle Harassment': `Hi! Who was harassing you, and in which battle did it happen? Please post a link to the battle or a replay of the battle.`, - 'Inappropriate Username / Status Message': `Hi! Tell us the username that is inappropriate, or tell us which user has an inappropriate status message.`, + 'Inappropriate Username': `Hi! Tell us the username that is inappropriate.`, 'Inappropriate Pokemon Nicknames': `Hi! Which user has Pokemon with inappropriate nicknames, and in which battle? Please post a link to the battle or a replay of the battle.`, Appeal: `Hi! Can you please explain why you feel your punishment is undeserved?`, 'IP-Appeal': `Hi! How are you connecting to Showdown right now? At home, at school, on a phone using mobile data, or some other way?`, @@ -1138,7 +1138,7 @@ export const commands: ChatCommands = { case 'PM Harassment': case 'Battle Harassment': case 'Inappropriate Pokemon Nicknames': - case 'Inappropriate Username / Status Message': + case 'Inappropriate Username': closeButtons = ` `; break; case 'Public Room Assistance Request': @@ -1156,8 +1156,8 @@ export const commands: ChatCommands = { contexts['PM Harassment'] = `Hi! Please click the button below to give global staff permission to check PMs.` + ` Or if ${reportTarget} is not the user you want to report, please tell us the name of the user who you want to report.`; break; - case 'Inappropriate Username / Status Message': - staffIntroButtons = ` `; + case 'Inappropriate Username': + staffIntroButtons = ` `; break; } staffIntroButtons += ` `;