this repo has no description
1import { Patch } from "@moonlight-mod/types"; 2 3export const patches: Patch[] = [ 4 { 5 find: "isStaffPersonal:", 6 replace: { 7 match: /&&null!=this\.personalConnectionId/, 8 replacement: "||!0" 9 } 10 }, 11 { 12 find: '"scientist:triggered"', // Scientist? Triggered. 13 replace: { 14 match: /(?<=personal_connection_id\|\|)!1/, 15 replacement: "!0" 16 } 17 } 18];