We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 625c40c commit 49a9664Copy full SHA for 49a9664
1 file changed
src/ps/handlers/raw/scavengers.ts
@@ -25,7 +25,7 @@ export function checkHunts(room: string, data: string) {
25
const { type: huntType, maker } = huntStart.groups;
26
27
function post(message: string): void {
28
- const sanitized = unescapeHTML(message.replace(/@(?=here|everyone)/, '@\u200b'));
+ const sanitized = unescapeHTML(message.replace(/(?<!^)@(?=here|everyone)/, '@\u200b'));
29
huntChannel!.send(sanitized);
30
}
31
0 commit comments