You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
Merge remote-tracking branch 'duckie/main' into merge-duckie-main-2026-05-06
# Conflicts: # packages/communication/src/messages/parser/room/unit/RoomUnitInfoParser.ts # packages/communication/src/messages/parser/user/data/UserProfileParser.ts # packages/events/src/session/RoomSessionUserFigureUpdateEvent.ts # packages/session/src/handler/RoomUsersHandler.ts
This commit is contained in:
@@ -12,6 +12,7 @@ export class RoomSessionUserFigureUpdateEvent extends RoomSessionEvent {
|
||||
private _backgroundId: number | null;
|
||||
private _standId: number | null;
|
||||
private _overlayId: number | null;
|
||||
private _cardBackgroundId: number | null;
|
||||
private _nickIcon: string;
|
||||
private _prefixText: string;
|
||||
private _prefixColor: string;
|
||||
@@ -30,6 +31,7 @@ export class RoomSessionUserFigureUpdateEvent extends RoomSessionEvent {
|
||||
backgroundId: number | null,
|
||||
standId: number | null,
|
||||
overlayId: number | null,
|
||||
cardBackgroundId: number | null = 0,
|
||||
nickIcon: string = '',
|
||||
prefixText: string = '',
|
||||
prefixColor: string = '',
|
||||
@@ -48,6 +50,7 @@ export class RoomSessionUserFigureUpdateEvent extends RoomSessionEvent {
|
||||
this._backgroundId = backgroundId;
|
||||
this._standId = standId;
|
||||
this._overlayId = overlayId;
|
||||
this._cardBackgroundId = cardBackgroundId;
|
||||
this._nickIcon = nickIcon;
|
||||
this._prefixText = prefixText;
|
||||
this._prefixColor = prefixColor;
|
||||
@@ -89,6 +92,10 @@ export class RoomSessionUserFigureUpdateEvent extends RoomSessionEvent {
|
||||
return this._overlayId;
|
||||
}
|
||||
|
||||
public get cardBackgroundId(): number | null {
|
||||
return this._cardBackgroundId;
|
||||
}
|
||||
|
||||
public get nickIcon(): string {
|
||||
return this._nickIcon;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user