sharp-chat/SharpChat/Packet/UserChannelForceJoinPacket.cs

17 lines
459 B
C#
Raw Normal View History

2024-05-19 21:02:17 +00:00
namespace SharpChat.Packet {
public class UserChannelForceJoinPacket : SockChatS2CPacket {
private readonly string ChannelName;
2022-08-30 15:00:58 +00:00
public UserChannelForceJoinPacket(string channelName) {
ChannelName = channelName;
2022-08-30 15:00:58 +00:00
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
2024-05-19 21:02:17 +00:00
return string.Format(
"5\t2\t{0}",
SockChatUtility.SanitiseChannelName(ChannelName)
);
2022-08-30 15:00:58 +00:00
}
}
}