Paper/patches/api/0347-Add-GameEvent-tags.patch

43 lines
1.9 KiB
Diff
Raw Normal View History

2022-02-18 03:42:22 +01:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Jake Potrebic <jake.m.potrebic@gmail.com>
Date: Sat, 18 Dec 2021 10:34:21 -0800
Subject: [PATCH] Add GameEvent tags
diff --git a/src/main/java/org/bukkit/Tag.java b/src/main/java/org/bukkit/Tag.java
2023-09-21 19:18:04 +02:00
index 4beb607c31705e182ac04c48bdc2a1de13eb9b4c..3665b284799726134469b60909efd59da3bd485b 100644
2022-02-18 03:42:22 +01:00
--- a/src/main/java/org/bukkit/Tag.java
+++ b/src/main/java/org/bukkit/Tag.java
2023-09-21 19:18:04 +02:00
@@ -968,11 +968,31 @@ public interface Tag<T extends Keyed> extends Keyed {
2023-03-14 18:21:11 +01:00
* Vanilla tag representing entities which are dismounted when underwater.
2022-02-18 03:42:22 +01:00
*/
2023-03-14 18:21:11 +01:00
Tag<EntityType> ENTITY_TYPES_DISMOUNTS_UNDERWATER = Bukkit.getTag(REGISTRY_ENTITY_TYPES, NamespacedKey.minecraft("dismounts_underwater"), EntityType.class);
2023-09-21 19:18:04 +02:00
+
/**
* Vanilla tag representing entities which are not controlled by their mount.
*/
Tag<EntityType> ENTITY_TYPES_NON_CONTROLLING_RIDER = Bukkit.getTag(REGISTRY_ENTITY_TYPES, NamespacedKey.minecraft("non_controlling_rider"), EntityType.class);
2023-03-14 18:21:11 +01:00
+ // Paper start
2022-02-18 03:42:22 +01:00
+ String REGISTRY_GAME_EVENTS = "game_events";
+
+ /**
+ * Tag for game events that trigger sculk sensors
+ */
+ Tag<GameEvent> GAME_EVENT_VIBRATIONS = Bukkit.getTag(REGISTRY_GAME_EVENTS, NamespacedKey.minecraft("vibrations"), GameEvent.class);
+
+ /**
+ * Tag for game events that are ignored if the entity is sneaking
+ */
+ Tag<GameEvent> GAME_EVENT_IGNORE_VIBRATIONS_SNEAKING = Bukkit.getTag(REGISTRY_GAME_EVENTS, NamespacedKey.minecraft("ignore_vibrations_sneaking"), GameEvent.class);
2023-03-14 18:21:11 +01:00
+
+ /**
+ * Tag for game events that an allay can listen to
+ */
+ Tag<GameEvent> GAME_EVENT_ALLAY_CAN_LISTEN = Bukkit.getTag(REGISTRY_GAME_EVENTS, NamespacedKey.minecraft("allay_can_listen"), GameEvent.class);
+ // Paper end
2023-09-21 19:18:04 +02:00
+
2022-02-18 03:42:22 +01:00
/**
2023-03-14 18:21:11 +01:00
* Returns whether or not this tag has an entry for the specified item.
2023-09-21 19:18:04 +02:00
*