Update to 1.18.1 (#1461)

No changes required except for registering the protocol version
This commit is contained in:
Pasqual Koschmieder 2021-12-20 02:50:22 +01:00 committed by GitHub
parent 1cd83e493d
commit e77f8ced4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@
<project.fullVersion>${project.version}</project.fullVersion>
<powermock.version>2.0.9</powermock.version>
<spigot.version>1.18-R0.1-SNAPSHOT</spigot.version>
<spigot.version>1.18.1-R0.1-SNAPSHOT</spigot.version>
</properties>
<build>
@ -319,7 +319,7 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.12.1</version>
<version>1.12.3</version>
</dependency>
<!-- Testing dependencies -->

View File

@ -78,6 +78,7 @@ public class MinecraftProtocolVersion {
map.put(new MinecraftVersion(1, 17, 1), 756);
map.put(new MinecraftVersion(1, 18, 0), 757);
map.put(new MinecraftVersion(1, 18, 1), 757);
return map;
}