Remove this. everywhere, add small note to override style
This commit is contained in:
@@ -9,9 +9,9 @@ internal class ChannelSwitchInfo {
|
||||
internal string? Text { get; }
|
||||
|
||||
internal ChannelSwitchInfo(InputChannel? channel, bool permanent = false, RotateMode rotate = RotateMode.None, string? text = null) {
|
||||
this.Channel = channel;
|
||||
this.Permanent = permanent;
|
||||
this.Rotate = rotate;
|
||||
this.Text = text;
|
||||
Channel = channel;
|
||||
Permanent = permanent;
|
||||
Rotate = rotate;
|
||||
Text = text;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,6 +8,6 @@ internal sealed class ChatActivatedArgs {
|
||||
internal TellTarget? TellTarget { get; init; }
|
||||
|
||||
internal ChatActivatedArgs(ChannelSwitchInfo channelSwitchInfo) {
|
||||
this.ChannelSwitchInfo = channelSwitchInfo;
|
||||
ChannelSwitchInfo = channelSwitchInfo;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@ internal sealed class TellHistoryInfo {
|
||||
internal ulong ContentId { get; }
|
||||
|
||||
internal TellHistoryInfo(string name, uint world, ulong contentId) {
|
||||
this.Name = name;
|
||||
this.World = world;
|
||||
this.ContentId = contentId;
|
||||
Name = name;
|
||||
World = world;
|
||||
ContentId = contentId;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,9 +7,9 @@ internal sealed class TellTarget {
|
||||
internal TellReason Reason { get; }
|
||||
|
||||
internal TellTarget(string name, ushort world, ulong contentId, TellReason reason) {
|
||||
this.Name = name;
|
||||
this.World = world;
|
||||
this.ContentId = contentId;
|
||||
this.Reason = reason;
|
||||
Name = name;
|
||||
World = world;
|
||||
ContentId = contentId;
|
||||
Reason = reason;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user