2020-01-13 23:12:54 +01:00
|
|
|
From d32552a87b14d231a96e10bbb937a07618f44df6 Mon Sep 17 00:00:00 2001
|
2018-10-22 21:25:48 +02:00
|
|
|
From: GreenMeanie <GreenMeanieMC@gmail.com>
|
|
|
|
Date: Sat, 20 Oct 2018 22:34:02 -0400
|
|
|
|
Subject: [PATCH] Reset players airTicks on respawn
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2020-01-13 23:12:54 +01:00
|
|
|
index 905d2be5e..95d73fd6e 100644
|
2018-10-22 21:25:48 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2019-12-12 17:20:43 +01:00
|
|
|
@@ -2326,6 +2326,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2018-10-22 21:25:48 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-12-12 17:20:43 +01:00
|
|
|
+ public int getMaxAirTicks() { return bw(); } // Paper - OBFHELPER
|
|
|
|
public int bw() {
|
2018-10-22 21:25:48 +02:00
|
|
|
return 300;
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2020-01-13 23:12:54 +01:00
|
|
|
index 70c9a41ee..2301efa51 100644
|
2018-10-22 21:25:48 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2020-01-13 23:12:54 +01:00
|
|
|
@@ -1859,6 +1859,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2018-10-22 21:25:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setHealth(this.getMaxHealth());
|
|
|
|
+ this.setAirTicks(this.getMaxAirTicks()); // Paper
|
|
|
|
this.fireTicks = 0;
|
|
|
|
this.fallDistance = 0;
|
|
|
|
this.foodData = new FoodMetaData(this);
|
|
|
|
--
|
2019-12-13 21:41:01 +01:00
|
|
|
2.24.1
|
2018-10-22 21:25:48 +02:00
|
|
|
|