summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitattributes4
-rw-r--r--README.md2
-rw-r--r--platform-paper/src/main/kotlin/dev/m1sk9/lunaticChat/paper/velocity/VelocityConnectionManager.kt4
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
diff --git a/README.md b/README.md
index 13cb669..0a56c4a 100644
--- a/README.md
+++ b/README.md
@@ -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) {