forked from RepoMirrors/kami-blue
consistent naming for module vs class names
This commit is contained in:
parent
d80e55d74f
commit
871f093ba3
|
@ -19,7 +19,7 @@ import java.util.stream.Collectors;
|
|||
* Updated by S-B99 on 18/01/20
|
||||
*/
|
||||
@Module.Info(name = "AntiSpam", category = Module.Category.CHAT, description = "Removes spam and advertising from the chat", showOnArray = Module.ShowOnArray.OFF)
|
||||
public class AntiChatSpam extends Module {
|
||||
public class AntiSpam extends Module {
|
||||
|
||||
private Setting<Boolean> greenText = register(Settings.b("Green Text", false));
|
||||
private Setting<Boolean> discordLinks = register(Settings.b("Discord Links", true));
|
|
@ -6,5 +6,5 @@ import me.zeroeightsix.kami.module.Module;
|
|||
* Created by 086 on 9/04/2018.
|
||||
*/
|
||||
@Module.Info(name = "FakeVanillaClient", description = "Fakes a modless client when connecting", category = Module.Category.MISC)
|
||||
public class FakeVanilla extends Module {
|
||||
public class FakeVanillaClient extends Module {
|
||||
}
|
Loading…
Reference in New Issue