mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-09-09 01:35:38 -05:00
Remove 'inappropriate status' from reports
Staff suggest this is never used for the correct reasons and is more trouble than its worth
This commit is contained in:
@@ -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 += `<p><Button>confirmbattleharassment</Button></p>`;
|
||||
break;
|
||||
case 'inapname':
|
||||
buf += `<p>If a user has an inappropriate name or status message, click the button below and a global staff member will take a look.</p>`;
|
||||
buf += `<p>If a user has an inappropriate name, click the button below and a global staff member will take a look.</p>`;
|
||||
if (!isLast) break;
|
||||
buf += `<p><Button>confirminapname</Button></p>`;
|
||||
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 = `<button class="button" style="margin: 5px 0" name="send" value="/helpticket close ${user.id}">Close Ticket as Valid Report</button> <button class="button" style="margin: 5px 0" name="send" value="/helpticket close ${user.id}, false">Close Ticket as Invalid Report</button>`;
|
||||
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 = `<button class="button" name="send" value="/forcerename ${reportTarget}">Force-rename ${reportTarget}</button> <button class="button" name="send" value="/clearstatus ${reportTarget}">Clear ${reportTarget}'s status</button> `;
|
||||
case 'Inappropriate Username':
|
||||
staffIntroButtons = `<button class="button" name="send" value="/forcerename ${reportTarget}">Force-rename ${reportTarget}</button> `;
|
||||
break;
|
||||
}
|
||||
staffIntroButtons += `<button class="button" name="send" value="/modlog global, ${reportTarget}">Global Modlog for ${reportTarget}</button> <button class="button" name="send" value="/sharedbattles ${user.id}, ${toID(reportTarget)}">Shared battles</button> `;
|
||||
|
||||
Reference in New Issue
Block a user