1.20-pre7

This commit is contained in:
Nassim Jahnke 2023-05-29 16:54:45 +02:00
parent 5c0eda76e8
commit c6103f2f51
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B
4 changed files with 10 additions and 7 deletions

View File

@ -14,7 +14,6 @@ On Paper you may also use ProtocolSupport, but ensure you have the right build f
**User Docs:** https://docs.viaversion.com/display/VIAVERSION/
Sources
--------
**[OpenNBT](https://github.com/ViaVersion/OpenNBT)**
@ -44,7 +43,9 @@ You can find official dev builds here:
**JavaDocs:** https://jd.viaversion.com
**Maven Repository:**
```xml
<repository>
<id>viaversion-repo</id>
<url>https://repo.viaversion.com</url>
@ -52,7 +53,9 @@ You can find official dev builds here:
```
**API-artifact:**
```xml
<dependency>
<groupId>com.viaversion</groupId>
<artifactId>viaversion-api</artifactId>
@ -69,7 +72,8 @@ Please note the [differences in licensing](#license).
Building
--------
After cloning this repository, build the project with Gradle by running `./gradlew build` and take the created jar out of
After cloning this repository, build the project with Gradle by running `./gradlew build` and take the created jar out
of
the `build/libs` directory.
@ -80,7 +84,8 @@ Mapping files are generated and managed in our [Mappings repository](https://git
License
--------
The entirety of the [API directory](api) (including the legacy API directory) is licensed under the MIT License; see [licenses/MIT.md](licenses/MIT.md) for
The entirety of the [API directory](api) (including the legacy API directory) is licensed under the MIT License;
see [licenses/MIT.md](licenses/MIT.md) for
details.
Everything else, unless explicitly stated otherwise, is licensed under the GNU General Public License, including the end

View File

@ -83,7 +83,7 @@ public class ProtocolVersion {
public static final ProtocolVersion v1_19_1 = register(760, "1.19.1/2", new VersionRange("1.19", 1, 2));
public static final ProtocolVersion v1_19_3 = register(761, "1.19.3");
public static final ProtocolVersion v1_19_4 = register(762, "1.19.4");
public static final ProtocolVersion v1_20 = register(763, 139, "1.20");
public static final ProtocolVersion v1_20 = register(763, 140, "1.20");
public static final ProtocolVersion unknown = register(-1, "UNKNOWN");
public static ProtocolVersion register(int version, String name) {

View File

@ -31,8 +31,6 @@ public class Protocol1_9To1_9_1 extends AbstractProtocol<ClientboundPackets1_9,
@Override
protected void registerPackets() {
// Currently supports 1.9.1 and 1.9.2
registerClientbound(ClientboundPackets1_9.JOIN_GAME, new PacketHandlers() {
@Override
public void register() {

View File

@ -1,5 +1,5 @@
# Project properties - we put these here so they can be modified without causing a recompile of the build scripts
projectVersion=4.7.0-1.20-pre6-SNAPSHOT
projectVersion=4.7.0-1.20-pre7-SNAPSHOT
# Gradle properties
org.gradle.daemon=true