Plugin
NoUnblockToJump
Allows you to jump to messages of blocked or ignored users and likely spammers without unblocking them
1
/*2
* FiveCord — a Discord client mod3
* Copyright (c) 2025 FiveCord4
* SPDX-License-Identifier: GPL-3.0-or-later5
*/6
7
import { Devs } from "@utils/constants";8
import definePlugin from "@utils/types";9
10
export default definePlugin({11
name: "NoUnblockToJump",12
description: "Allows you to jump to messages of blocked or ignored users and likely spammers without unblocking them",13
tags: ["Utility"],14
authors: [Devs.dzshn],15
patches: [16
{17
find: "#{intl::UNIGNORE_TO_JUMP_BODY}",18
replacement: {19
match: /if\(\i\.\i\.isBlockedForMessage\(/,20
replace: "return true;$&"21
}22
}23
]24
});25