This commit is contained in:
手瓜一十雪 2024-07-31 16:02:08 +08:00
parent 2b662944cf
commit b8daeef0c4

View File

@ -10,10 +10,12 @@ class OB11PokeEvent extends OB11BaseNoticeEvent {
}
export class OB11FriendPokeEvent extends OB11PokeEvent {
constructor(user_id: number, target_id: number) {
raw_message: any;
constructor(user_id: number, target_id: number, raw_message: any) {
super();
this.target_id = target_id;
this.user_id = user_id;
this.raw_message = raw_message;
}
}