2022-10-01 02:23:41 +00:00
|
|
|
import { Devs } from "../utils/constants";
|
2022-09-30 23:34:27 +00:00
|
|
|
import definePlugin from "../utils/types";
|
|
|
|
|
|
|
|
export default definePlugin({
|
2022-10-01 02:23:41 +00:00
|
|
|
name: "PlainFolderIcon",
|
2022-09-30 23:34:27 +00:00
|
|
|
description: "Doesn't show the small guild icons in folders",
|
2022-10-01 02:23:41 +00:00
|
|
|
authors: [Devs.botato],
|
2022-09-30 23:34:27 +00:00
|
|
|
patches: [{
|
|
|
|
find: "().expandedFolderIconWrapper",
|
|
|
|
replacement: [{
|
|
|
|
match: /\(\w\|\|\w\)(&&\(\w=\w\.createElement\(\w+\.animated)/,
|
|
|
|
replace: "true$1",
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
});
|