mirror of
https://github.com/Aust1n46/VentureChat.git
synced 2025-05-23 02:19:05 +00:00
17 lines
420 B
Java
17 lines
420 B
Java
package mineverse.Aust1n46.chat.channel;
|
|
|
|
import mineverse.Aust1n46.chat.utilities.Format;
|
|
|
|
public class ChatChannelInfo {
|
|
// DiscordSRV backwards compatibility
|
|
@Deprecated
|
|
public String FilterChat(String msg) {
|
|
return Format.FilterChat(msg);
|
|
}
|
|
|
|
// DiscordSRV backwards compatibility
|
|
@Deprecated
|
|
public ChatChannel getChannelInfo(String channel) {
|
|
return ChatChannel.getChannel(channel);
|
|
}
|
|
} |