consistent naming for module vs class names

This commit is contained in:
Bella 2020-02-18 09:34:35 -05:00
parent d80e55d74f
commit 871f093ba3
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ import java.util.stream.Collectors;
* Updated by S-B99 on 18/01/20 * 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) @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> greenText = register(Settings.b("Green Text", false));
private Setting<Boolean> discordLinks = register(Settings.b("Discord Links", true)); private Setting<Boolean> discordLinks = register(Settings.b("Discord Links", true));

View File

@ -6,5 +6,5 @@ import me.zeroeightsix.kami.module.Module;
* Created by 086 on 9/04/2018. * Created by 086 on 9/04/2018.
*/ */
@Module.Info(name = "FakeVanillaClient", description = "Fakes a modless client when connecting", category = Module.Category.MISC) @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 {
} }