mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-17 18:37:04 -04:00
feat(plugin): iLoveSpam (#19)
This commit is contained in:
parent
18b6bce160
commit
967b101af1
3 changed files with 30 additions and 5 deletions
15
src/plugins/plainFolderIcon.ts
Normal file
15
src/plugins/plainFolderIcon.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { Devs } from "../utils/constants";
|
||||
import definePlugin from "../utils/types";
|
||||
|
||||
export default definePlugin({
|
||||
name: "PlainFolderIcon",
|
||||
description: "Doesn't show the small guild icons in folders",
|
||||
authors: [Devs.botato],
|
||||
patches: [{
|
||||
find: "().expandedFolderIconWrapper",
|
||||
replacement: [{
|
||||
match: /\(\w\|\|\w\)(&&\(\w=\w\.createElement\(\w+\.animated)/,
|
||||
replace: "true$1",
|
||||
}]
|
||||
}]
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue