mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 02:25:28 +01:00
Update upstream CB
This commit is contained in:
parent
bc55c519de
commit
2bfdbc4afa
@ -1,4 +1,4 @@
|
||||
From d47ca4a2fc9dda1259bb0a6e970598033e9fa031 Mon Sep 17 00:00:00 2001
|
||||
From 89091fadfcf6943042b97490048aa12e2d84aed5 Mon Sep 17 00:00:00 2001
|
||||
From: willies952002 <admin@domnian.com>
|
||||
Date: Mon, 28 Nov 2016 10:21:52 -0500
|
||||
Subject: [PATCH] Allow Reloading of Command Aliases
|
||||
@ -26,5 +26,5 @@ index b24ed68..5559532 100644
|
||||
// Paper end
|
||||
}
|
||||
--
|
||||
2.10.0
|
||||
2.10.2
|
||||
|
@ -1,30 +0,0 @@
|
||||
From 4eb6bc6c01b70d2d77fa96f5e57f5b5646a30fcc Mon Sep 17 00:00:00 2001
|
||||
From: Alfie Cleveland <alfeh@me.com>
|
||||
Date: Sun, 27 Nov 2016 22:17:37 +0000
|
||||
Subject: [PATCH] Don't process packets from offline players
|
||||
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/EntityHuman.java b/src/main/java/net/minecraft/server/EntityHuman.java
|
||||
index fd08195..eb68807 100644
|
||||
--- a/src/main/java/net/minecraft/server/EntityHuman.java
|
||||
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
|
||||
@@ -12,6 +12,7 @@ import javax.annotation.Nullable;
|
||||
// CraftBukkit start
|
||||
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
||||
import org.bukkit.craftbukkit.entity.CraftItem;
|
||||
+import org.bukkit.craftbukkit.entity.CraftPlayer; // Paper
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.entity.EntityCombustByEntityEvent;
|
||||
import org.bukkit.event.player.PlayerBedEnterEvent;
|
||||
@@ -292,7 +293,7 @@ public abstract class EntityHuman extends EntityLiving {
|
||||
}
|
||||
|
||||
protected boolean isFrozen() {
|
||||
- return this.getHealth() <= 0.0F || this.isSleeping();
|
||||
+ return this.getHealth() <= 0.0F || this.isSleeping() || (this.bukkitEntity != null && this.bukkitEntity instanceof CraftPlayer && !((CraftPlayer) this.bukkitEntity).isOnline()); // Paper - Pull #517
|
||||
}
|
||||
|
||||
public void closeInventory() {
|
||||
--
|
||||
2.10.2
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 41ade2f291c4596ac489606ca2b730b72b460dc2
|
||||
Subproject commit fffaf0711337e31b801c50556d1e6cf4c87c617a
|
Loading…
Reference in New Issue
Block a user