Skip to content
This repository was archived by the owner on Dec 10, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class BukkitClientCloudPlayerImpl(uuid: UUID, name: String) : ClientCloudPlayerI
val player = audience ?: return

val factory = ConversationFactory(plugin)
factory.withModality(true) // player dont receive messages from other players
factory.withLocalEcho(false) // player dont see their own messages
factory.withModality(true) // player doesn't receive messages from other players
factory.withLocalEcho(false) // player doesn't see their own messages
factory.withPrefix { ">> " } // prefix for messages
factory.withTimeout(60) // timeout in seconds
factory.withEscapeSequence("exit") // escape sequence to exit conversation
Expand Down