Rename Donkellama to DonkeyAlert

This commit is contained in:
noil 2020-12-26 17:02:22 -05:00
parent 488d63d9be
commit d14aa6df4a
2 changed files with 5 additions and 5 deletions

View File

@ -163,7 +163,7 @@ public final class ModuleManager {
add(new AutoGappleModule()); add(new AutoGappleModule());
add(new AutoEatModule()); add(new AutoEatModule());
add(new NoFriendHurtModule()); add(new NoFriendHurtModule());
add(new DonkellamaModule()); add(new DonkeyAlertModule());
// p2w experience // p2w experience
if (Seppuku.INSTANCE.getCapeManager().hasCape()) if (Seppuku.INSTANCE.getCapeManager().hasCape())

View File

@ -1,4 +1,4 @@
package me.rigamortis.seppuku.impl.module.world; package me.rigamortis.seppuku.impl.module.misc;
import com.mojang.realmsclient.gui.ChatFormatting; import com.mojang.realmsclient.gui.ChatFormatting;
import me.rigamortis.seppuku.Seppuku; import me.rigamortis.seppuku.Seppuku;
@ -17,7 +17,7 @@ import team.stiff.pomelo.impl.annotated.handler.annotation.Listener;
/** /**
* @author noil * @author noil
*/ */
public final class DonkellamaModule extends Module { public final class DonkeyAlertModule extends Module {
public final Value<Mode> mode = new Value<Mode>("Mode", new String[]{"Mode", "M"}, "Change between alert modes.", Mode.BOTH); public final Value<Mode> mode = new Value<Mode>("Mode", new String[]{"Mode", "M"}, "Change between alert modes.", Mode.BOTH);
@ -34,8 +34,8 @@ public final class DonkellamaModule extends Module {
CHAT, NOTIFICATION, BOTH CHAT, NOTIFICATION, BOTH
} }
public DonkellamaModule() { public DonkeyAlertModule() {
super("DonkeyAlert", new String[]{"Donkellama", "Donkeyllama", "DonkeyFinder", "LlamaFinder", "StorageEntityFinder", "Dllama", "Donkelama", "Donkeylama", "Donk", "DonkAlert", "DonkeyAlert", "LlamaAlert"}, "Alerts you about donkeys and llamas! (horses, mules, too..)", "NONE", -1, ModuleType.WORLD); super("DonkeyAlert", new String[]{"Donkellama", "Donkeyllama", "DonkeyFinder", "LlamaFinder", "StorageEntityFinder", "Dllama", "Donkelama", "Donkeylama", "Donk", "DonkAlert", "DonkeyAlert", "LlamaAlert"}, "Alerts you about donkeys and llamas! (horses, mules, too..)", "NONE", -1, ModuleType.MISC);
} }
@Listener @Listener