Plugin
NoUnblockToJump
Allows you to jump to messages of blocked or ignored users and likely spammers without unblocking them
1
import { Devs } from "@utils/constants";2
import definePlugin from "@utils/types";3
4
export default definePlugin({5
name: "NoUnblockToJump",6
description: "Allows you to jump to messages of blocked or ignored users and likely spammers without unblocking them",7
tags: ["Utility"],8
authors: [Devs.dzshn],9
patches: [10
{11
find: "#{intl::UNIGNORE_TO_JUMP_BODY}",12
replacement: {13
match: /if\(\i\.\i\.isBlockedForMessage\(/,14
replace: "return true;$&"15
}16
}17
]18
});19