From cbb5cf8ad524d2a7e12384aa10c342b5deb5a7da Mon Sep 17 00:00:00 2001 From: Mia <49593536+mia-pi-git@users.noreply.github.com> Date: Wed, 19 May 2021 12:32:07 -0500 Subject: [PATCH] Helptickets: Remove extraenous linebreak --- server/chat-plugins/helptickets.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/chat-plugins/helptickets.ts b/server/chat-plugins/helptickets.ts index 5261c189e5..be5650ac33 100644 --- a/server/chat-plugins/helptickets.ts +++ b/server/chat-plugins/helptickets.ts @@ -731,8 +731,7 @@ export const textTickets: {[k: string]: TextTicketInfo} = { const replays = getBattleLinks(ticket.text[1]).concat(getBattleLinks(ticket.text[1])); buf += `Reported user: ${reportUserid} `; buf += `
`; - buf += `
`; - buf += `

Punish:
`; + buf += `
Punish:
`; const replayString = replays.concat(sharedBattles).map(u => `https://${Config.routes.client}/${u}`).join(', '); const proofString = `spoiler:PMs with ${ticket.userid}${replayString ? `, ${replayString}` : ''}`; for (const [name, punishment] of [['Lock', 'lock'], ['Weeklock', 'weeklock'], ['Warn', 'warn']]) {