From 2586210ca67f2510eb4f91bf7567643f8a26ee7b Mon Sep 17 00:00:00 2001 From: Riley Park Date: Thu, 18 Nov 2021 10:49:54 -0800 Subject: [PATCH] Move to PaperMC organisation --- .travis.yml | 11 ----------- README.md | 4 ++-- .../proxy/command/builtin/VelocityCommand.java | 4 ++-- 3 files changed, 4 insertions(+), 15 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ff0d0f19d..000000000 --- a/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -language: java -before_cache: - - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ -cache: - directories: - - $HOME/.gradle/caches/ - - $HOME/.gradle/wrapper/ -jdk: - - openjdk8 - - openjdk11 \ No newline at end of file diff --git a/README.md b/README.md index 9ae0ce25c..d910a5e04 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Velocity [![Build Status](https://img.shields.io/jenkins/s/https/ci.velocitypowered.com/job/velocity.svg)](https://ci.velocitypowered.com/job/velocity-3.0.0/) -[![Join our Discord](https://img.shields.io/discord/472484458856185878.svg?logo=discord&label=)](https://discord.gg/8cB9Bgf) +[![Join our Discord](https://img.shields.io/discord/289587909051416579.svg?logo=discord&label=)](https://discord.gg/papermc) A Minecraft server proxy with unparalleled server support, scalability, and flexibility. @@ -32,5 +32,5 @@ Once you've built Velocity, you can copy and run the `-all` JAR from `proxy/build/libs`. Velocity will generate a default configuration file and you can configure it from there. -Alternatively, you can get the proxy JAR from the [downloads](https://www.velocitypowered.com/downloads) +Alternatively, you can get the proxy JAR from the [downloads](https://velocitypowered.com/downloads) page. diff --git a/proxy/src/main/java/com/velocitypowered/proxy/command/builtin/VelocityCommand.java b/proxy/src/main/java/com/velocitypowered/proxy/command/builtin/VelocityCommand.java index d808a0783..37dca2e72 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/command/builtin/VelocityCommand.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/command/builtin/VelocityCommand.java @@ -237,14 +237,14 @@ public class VelocityCommand implements SimpleCommand { .append(Component.text().content("velocitypowered.com") .color(NamedTextColor.GREEN) .clickEvent( - ClickEvent.openUrl("https://www.velocitypowered.com")) + ClickEvent.openUrl("https://velocitypowered.com")) .build()) .append(Component.text(" - ")) .append(Component.text().content("GitHub") .color(NamedTextColor.GREEN) .decoration(TextDecoration.UNDERLINED, true) .clickEvent(ClickEvent.openUrl( - "https://github.com/VelocityPowered/Velocity")) + "https://github.com/PaperMC/Velocity")) .build()) .build(); source.sendMessage(Identity.nil(), embellishment);