3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 06:30:16 +02:00

Move to PaperMC organisation

Dieser Commit ist enthalten in:
Riley Park 2021-11-18 10:49:54 -08:00
Ursprung d3b3ef231b
Commit 2586210ca6
3 geänderte Dateien mit 4 neuen und 15 gelöschten Zeilen

Datei anzeigen

@ -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

Datei anzeigen

@ -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.

Datei anzeigen

@ -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);