3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

Disable portal support for entities for now. Restore allowNether check.

Relates to:
BUKKIT-2695 BUKKIT-2675
Dieser Commit ist enthalten in:
EvilSeph 2012-10-30 17:09:18 -04:00
Ursprung 6bf705dd08
Commit b7886d1421

Datei anzeigen

@ -248,7 +248,7 @@ public abstract class Entity {
i = this.z(); i = this.z();
if (this.ao) { if (this.ao) {
// if (minecraftserver.getAllowNether()) { // CraftBukkit if (minecraftserver.getAllowNether()) {
if (this.vehicle == null && this.h++ >= i) { if (this.vehicle == null && this.h++ >= i) {
this.h = i; this.h = i;
this.an = this.ab(); this.an = this.ab();
@ -264,7 +264,7 @@ public abstract class Entity {
} }
this.ao = false; this.ao = false;
// } // CraftBukkit }
} else { } else {
if (this.h > 0) { if (this.h > 0) {
this.h -= 4; this.h -= 4;
@ -1681,7 +1681,7 @@ public abstract class Entity {
} }
public void b(int i) { public void b(int i) {
if (!this.world.isStatic && !this.dead) { if (false && !this.world.isStatic && !this.dead) { // CraftBukkit - disable entity portal support for now.
MinecraftServer minecraftserver = MinecraftServer.getServer(); MinecraftServer minecraftserver = MinecraftServer.getServer();
int j = this.dimension; int j = this.dimension;
WorldServer worldserver = minecraftserver.getWorldServer(j); WorldServer worldserver = minecraftserver.getWorldServer(j);