diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-02-01 01:18:52 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-02-01 01:19:10 +0900 |
| commit | 91eacf88d163885ad151686d39d6a393728b633f (patch) | |
| tree | 5b0e60a00c438d9dd33137bd6ea756ceaeec4915 | |
| parent | 04aa7573e876724b58c8f116fadd01e060629813 (diff) | |
| download | LunaticChat-91eacf88d163885ad151686d39d6a393728b633f.tar.gz LunaticChat-91eacf88d163885ad151686d39d6a393728b633f.tar.bz2 LunaticChat-91eacf88d163885ad151686d39d6a393728b633f.zip | |
docs: Update readme
| -rw-r--r-- | .gitattributes | 4 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/velocity/VelocityConnectionManager.kt | 4 |
3 files changed, 8 insertions, 2 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2f2bc30 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +# Exclude build and tool scripts from language statistics +x linguist-vendored=true +gradlew linguist-vendored=true +.github/scripts/post-test-results.sh linguist-vendored=true @@ -37,7 +37,7 @@ See the [Documentation](https://lc.m1sk9.dev/guide/getting-started). - Quick Reply Functionality (`/reply`) - Romaji to Japanese Conversion - Channel Chat System -- Multi-platform support (Paper, Velocity) (coming soon) +- Multi-platform support (Paper, Velocity) - Spigot? No problem, just use Paper! ## License diff --git a/platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/velocity/VelocityConnectionManager.kt b/platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/velocity/VelocityConnectionManager.kt index 8861528..e77910b 100644 --- a/platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/velocity/VelocityConnectionManager.kt +++ b/platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/velocity/VelocityConnectionManager.kt @@ -197,7 +197,9 @@ class VelocityConnectionManager( * Handles status response */ private fun handleStatusResponse(response: PluginMessage.StatusResponse) { - logger.info("Received status response from Velocity: version=${response.velocityVersion}, protocol=${response.protocolVersion}, online=${response.online}") + logger.info( + "Received status response from Velocity: version=${response.velocityVersion}, protocol=${response.protocolVersion}, online=${response.online}", + ) val future = statusFuture if (future != null) { |
