18 lines
410 B
1
import { Patch } from "@moonlight-mod/types";
2
3
export const patches: Patch[] = [
4
{
5
find: "analyticsTrackingStoreMaker:()=>",
6
replace: {
7
match: /analyticsTrackingStoreMaker:\(\)=>.+?,/,
8
replacement: "analyticsTrackingStoreMaker:()=>()=>{},"
9
}
10
},
11
{
12
find: /this\._metrics\.push\(.\),/,
13
replace: {
14
match: /this\._metrics\.push\(.\),/,
15
replacement: ""
16
}
17
}
18
];
19