1
0
mirror of https://github.com/kami-blue/client synced 2025-01-26 00:32:45 +00:00

change defaults for debug messages

This commit is contained in:
Bella 2019-11-23 20:32:50 -05:00
parent 1d04bc2f63
commit fa75a8e199

View File

@ -91,7 +91,7 @@ public class Surround extends Module {
if (mc.player == null) {
this.disable();
} else {
if (debugMsgs.getValue().equals(DebugMsgs.IMPORTANT)) {
if (debugMsgs.getValue().equals(DebugMsgs.ALL)) {
Command.sendChatMessage("[Surround] Enabling");
}
@ -106,7 +106,7 @@ public class Surround extends Module {
protected void onDisable() {
if (mc.player != null) {
if (debugMsgs.getValue().equals(DebugMsgs.IMPORTANT)) {
if (debugMsgs.getValue().equals(DebugMsgs.ALL)) {
Command.sendChatMessage("[Surround] Disabling");
}