Skip to content

Commit ce56a02

Browse files
committed
Update Vanilla base to 26.1.2
No actual server changes aside from the usual data version bumps
1 parent 7773669 commit ce56a02

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repositories {
3939
}
4040

4141
dependencies {
42-
compileOnly("io.papermc.paper:paper-api:26.1.1.build.+")
42+
compileOnly("io.papermc.paper:paper-api:26.1.2.build.+")
4343
}
4444

4545
java {
@@ -59,7 +59,7 @@ java {
5959
<dependency>
6060
<groupId>io.papermc.paper</groupId>
6161
<artifactId>paper-api</artifactId>
62-
<version>[26.1.1.build,)</version>
62+
<version>[26.1.2.build,)</version>
6363
<scope>provided</scope>
6464
</dependency>
6565
```

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
group=io.papermc.paper
2-
mcVersion=26.1.1
2+
mcVersion=26.1.2
33
# This is the current API version for use in (paper-)plugin.yml files
44
# During snapshot cycles this should be the anticipated version of the release target
5-
apiVersion=26.1.1
5+
apiVersion=26.1.2
66
channel=ALPHA
77

88
# Set to true while updating Minecraft version

paper-server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/"
1515

1616
dependencies {
17-
mache("io.papermc:mache:26.1.1+build.3")
17+
mache("io.papermc:mache:26.1.2+build.1")
1818
paperclip("io.papermc:paperclip:3.0.3")
1919
}
2020

paper-server/patches/sources/net/minecraft/server/network/ServerGamePacketListenerImpl.java.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1799,8 +1799,8 @@
17991799
@Override
18001800
public void handleAttack(final ServerboundAttackPacket packet) {
18011801
PacketUtils.ensureRunningOnSameThread(packet, this, this.player.level());
1802-
+ if (this.player.isImmobile() || this.player.isSpectator()) return; // Paper
1803-
if (this.hasClientLoaded()) {
1802+
+ if (this.player.isImmobile()) return; // Paper
1803+
if (this.hasClientLoaded() && !this.player.isSpectator()) {
18041804
ServerLevel level = this.player.level();
18051805
Entity target = level.getEntityOrPart(packet.entityId());
18061806
+ // Spigot start

0 commit comments

Comments
 (0)