Fix RelationShipNotifier
This commit is contained in:
parent
53cd14844f
commit
722dcb033e
@ -31,23 +31,23 @@ export default definePlugin({
|
|||||||
|
|
||||||
patches: [
|
patches: [
|
||||||
{
|
{
|
||||||
find: "removeRelationship:function(",
|
find: "removeRelationship:(",
|
||||||
replacement: {
|
replacement: {
|
||||||
match: /(removeRelationship:function\((\i),\i,\i\){)/,
|
match: /(removeRelationship:\((\i),\i,\i\)=>)/,
|
||||||
replace: "$1$self.removeFriend($2);"
|
replace: "$1($self.removeFriend($2),0)||"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
find: "leaveGuild:function(",
|
find: "async leaveGuild(",
|
||||||
replacement: {
|
replacement: {
|
||||||
match: /(leaveGuild:function\((\i)\){)/,
|
match: /(leaveGuild\((\i)\){)/,
|
||||||
replace: "$1$self.removeGuild($2);"
|
replace: "$1$self.removeGuild($2);"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
find: "closePrivateChannel:function(",
|
find: "},closePrivateChannel(",
|
||||||
replacement: {
|
replacement: {
|
||||||
match: /(closePrivateChannel:function\((\i)\){)/,
|
match: /(closePrivateChannel\((\i)\){)/,
|
||||||
replace: "$1$self.removeGroup($2);"
|
replace: "$1$self.removeGroup($2);"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user