mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 15:47:44 +01:00
Reset spawner timer when spawner event is cancelled (#819)
This commit is contained in:
parent
52c8fc7633
commit
128c35000b
1 changed files with 32 additions and 0 deletions
|
@ -0,0 +1,32 @@
|
||||||
|
From 92617e0faa93936b619afc70bcc11c9f3d5e395e Mon Sep 17 00:00:00 2001
|
||||||
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
||||||
|
Date: Mon, 31 Jul 2017 01:45:19 -0500
|
||||||
|
Subject: [PATCH] Reset spawner timer when spawner event is cancelled
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/MobSpawnerAbstract.java b/src/main/java/net/minecraft/server/MobSpawnerAbstract.java
|
||||||
|
index a5b5ef0f..b5c9c28a 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/MobSpawnerAbstract.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/MobSpawnerAbstract.java
|
||||||
|
@@ -112,6 +112,9 @@ public abstract class MobSpawnerAbstract {
|
||||||
|
{
|
||||||
|
entity.fromMobSpawner = true;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ flag = true; // Paper
|
||||||
|
+
|
||||||
|
if (org.bukkit.craftbukkit.event.CraftEventFactory.callSpawnerSpawnEvent(entity, blockposition).isCancelled()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
@@ -122,7 +125,7 @@ public abstract class MobSpawnerAbstract {
|
||||||
|
entityinsentient.doSpawnEffect();
|
||||||
|
}
|
||||||
|
|
||||||
|
- flag = true;
|
||||||
|
+ /*flag = true;*/ // Paper - moved up above cancellable event
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
2.11.0
|
||||||
|
|
Loading…
Reference in a new issue