11 lines
225 B
1
import { Patch } from "@moonlight-mod/types";
2
3
export const patches: Patch[] = [
4
{
5
find: "hideToken:function",
6
replace: {
7
match: /(?<=hideToken:function\(\){)/,
8
replacement: `return()=>{};`
9
}
10
}
11
];
12