Do not echo back messages in conversations.

This commit is contained in:
Len 2022-09-10 12:50:20 +02:00
parent 06a9511874
commit 7b0fd3a9cb

View File

@ -26,6 +26,7 @@ public class ConversationManager implements ConversationAbandonedListener {
.addConversationAbandonedListener(this)
.withEscapeSequence("cancel");
conversation = conversationFactory.buildConversation(player);
conversation.setLocalEchoEnabled(false); // why is this not in the builder
conversation.begin();
}