From 29a7b01937b3838c09bfe72404325799eebef508 Mon Sep 17 00:00:00 2001 From: EnZaXD Date: Mon, 5 Aug 2024 09:09:43 +0200 Subject: [PATCH] Use GH repository description in platforms and README.md file (#851) --- README.md | 2 +- build.gradle.kts | 2 +- .../main/java/com/viaversion/viabackwards/VelocityPlugin.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 78b081ed..99443b4f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Build Status](https://github.com/ViaVersion/ViaBackwards/actions/workflows/gradle.yml/badge.svg?branch=master)](https://github.com/ViaVersion/ViaBackwards/actions) [![Discord](https://img.shields.io/badge/chat-on%20discord-blue.svg)](https://viaversion.com/discord) -**Allows older Minecraft client versions to connect to newer server versions.** +**Allows the connection of older clients to newer server versions for Minecraft servers.** Requires [ViaVersion](https://hangar.papermc.io/ViaVersion/ViaVersion) to be installed.. diff --git a/build.gradle.kts b/build.gradle.kts index b40ecff9..f32152e1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { allprojects { group = "com.viaversion" version = property("projectVersion") as String // from gradle.properties - description = "Allows older Minecraft client versions to connect to newer server versions." + description = "Allows the connection of older clients to newer server versions for Minecraft servers." } val main = setOf( diff --git a/velocity/src/main/java/com/viaversion/viabackwards/VelocityPlugin.java b/velocity/src/main/java/com/viaversion/viabackwards/VelocityPlugin.java index e53a0995..f7dcb0fb 100644 --- a/velocity/src/main/java/com/viaversion/viabackwards/VelocityPlugin.java +++ b/velocity/src/main/java/com/viaversion/viabackwards/VelocityPlugin.java @@ -37,7 +37,7 @@ import java.util.logging.Logger; name = "ViaBackwards", version = VersionInfo.VERSION, authors = {"Matsv", "kennytv", "Gerrygames", "creeper123123321", "ForceUpdate1", "EnZaXD"}, - description = "Allows older Minecraft client versions to connect to newer server versions.", + description = "Allows the connection of older clients to newer server versions for Minecraft servers.", dependencies = {@Dependency(id = "viaversion")} ) public class VelocityPlugin implements ViaBackwardsPlatform {