mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-17 08:05:31 +01:00
96d5e6ca48
Currently includes generated key holder classes for types used in the Registry Modification API
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
Date: Fri, 3 Jul 2020 15:05:54 -0700
|
|
Subject: [PATCH] added 2 new TargetReasons for 1.16 mob behavior
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/event/entity/EntityTargetEvent.java b/src/main/java/org/bukkit/event/entity/EntityTargetEvent.java
|
|
index c6e4d69eecd2789b1d78fe99fe590932e9758ba1..85b318d9ee56a3c22c6b7c9ac408f021e51cb609 100644
|
|
--- a/src/main/java/org/bukkit/event/entity/EntityTargetEvent.java
|
|
+++ b/src/main/java/org/bukkit/event/entity/EntityTargetEvent.java
|
|
@@ -159,6 +159,14 @@ public class EntityTargetEvent extends EntityEvent implements Cancellable {
|
|
* as wheat in its hand.
|
|
*/
|
|
TEMPT,
|
|
+ /**
|
|
+ * When the target is in a different dimension
|
|
+ */
|
|
+ TARGET_OTHER_LEVEL, // Paper
|
|
+ /**
|
|
+ * When the target is in creative or spectator gamemode, or the difficulty is peaceful, or other reasons
|
|
+ */
|
|
+ TARGET_INVALID, // Paper
|
|
/**
|
|
* A currently unknown reason for the entity changing target.
|
|
*/
|