this repo has no description
1import { Patch } from "@moonlight-mod/types"; 2 3export 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];