diff options
| -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) { |
