This commit is contained in:
Daniella / Tove 2024-05-26 03:33:13 +02:00
parent fc4e744e48
commit a94512afab

View file

@ -131,7 +131,7 @@ public class ChatCrypt extends Feature {
if(!useSBE && decryptNoKeep(original).equals("CC:keep") && allowCCKeep) {
keepTrypt = true;
trypt = null;
HUD.notifyAndPrint("§c§lChat>§c Enabled and synchronized Trypt keep (initiated by " + username + ").");
HUD.notifyAndPrint("§dChat>§a Enabled and synchronized Trypt keep (initiated by " + username + ").");
e.setCancelled(true);
return;
}
@ -143,7 +143,7 @@ public class ChatCrypt extends Feature {
GlobalUtil.LOGGER.debug("Successfully kept Trypt key up-to-date.");
}
else {
HUD.notifyAndPrint("§c§lChat>§c Unable to keep Trypt key up-to-date. Disabled keep." + (allowCCKeep ? " (Enable and sync by sending CC:keep)" : ""));
HUD.notifyAndPrint("§d§lChat>§c Unable to keep Trypt key up-to-date. Disabled keep." + (allowCCKeep ? " (Enable and sync by sending CC:keep)" : ""));
keepTrypt = false;
}
}