fix: reference problems

This commit is contained in:
Wesley F. Young
2024-08-11 00:45:47 +08:00
parent 6a7c7a0ab5
commit 87f6dc7c0b
7 changed files with 8 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ export class OB11GroupDecreaseEvent extends OB11GroupNoticeEvent {
operator_id: number;
constructor(core: NapCatCore, groupId: number, userId: number, operatorId: number, subType: GroupDecreaseSubType = 'leave') {
super(core);
super(core, groupId, userId);
this.group_id = groupId;
this.operator_id = operatorId; // 实际上不应该这么实现,但是现在还没有办法识别用户是被踢出的,还是自己主动退出的
this.user_id = userId;