2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Sun, 5 Jul 2020 00:34:24 -0700
|
|
|
|
Subject: [PATCH] added PlayerNameEntityEvent
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/event/player/PlayerNameEntityEvent.java b/src/main/java/io/papermc/paper/event/player/PlayerNameEntityEvent.java
|
|
|
|
new file mode 100755
|
2024-02-01 10:15:57 +01:00
|
|
|
index 0000000000000000000000000000000000000000..84736d4a438e9023fbdeac1aea4d8b741cc39b61
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/event/player/PlayerNameEntityEvent.java
|
2024-02-01 10:15:57 +01:00
|
|
|
@@ -0,0 +1,110 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
+package io.papermc.paper.event.player;
|
|
|
|
+
|
|
|
|
+import net.kyori.adventure.text.Component;
|
|
|
|
+import org.bukkit.entity.LivingEntity;
|
|
|
|
+import org.bukkit.entity.Player;
|
|
|
|
+import org.bukkit.event.Cancellable;
|
|
|
|
+import org.bukkit.event.HandlerList;
|
|
|
|
+import org.bukkit.event.player.PlayerEvent;
|
2024-02-01 10:15:57 +01:00
|
|
|
+import org.jetbrains.annotations.ApiStatus;
|
2021-06-11 14:02:28 +02:00
|
|
|
+import org.jetbrains.annotations.NotNull;
|
|
|
|
+import org.jetbrains.annotations.Nullable;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Called when the player is attempting to rename a mob
|
|
|
|
+ */
|
|
|
|
+public class PlayerNameEntityEvent extends PlayerEvent implements Cancellable {
|
|
|
|
+
|
2024-02-01 10:15:57 +01:00
|
|
|
+ private static final HandlerList HANDLER_LIST = new HandlerList();
|
|
|
|
+
|
2021-06-11 14:02:28 +02:00
|
|
|
+ private LivingEntity entity;
|
|
|
|
+ private Component name;
|
|
|
|
+ private boolean persistent;
|
2024-02-01 10:15:57 +01:00
|
|
|
+
|
2021-06-11 14:02:28 +02:00
|
|
|
+ private boolean cancelled;
|
|
|
|
+
|
2024-02-01 10:15:57 +01:00
|
|
|
+ @ApiStatus.Internal
|
2021-06-11 14:02:28 +02:00
|
|
|
+ public PlayerNameEntityEvent(@NotNull Player player, @NotNull LivingEntity entity, @NotNull Component name, boolean persistent) {
|
|
|
|
+ super(player);
|
|
|
|
+ this.entity = entity;
|
|
|
|
+ this.name = name;
|
|
|
|
+ this.persistent = persistent;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the name to be given to the entity.
|
2024-02-01 10:15:57 +01:00
|
|
|
+ *
|
2021-06-11 14:02:28 +02:00
|
|
|
+ * @return the name
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ public Component getName() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return this.name;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets the name to be given to the entity.
|
|
|
|
+ *
|
|
|
|
+ * @param name the name
|
|
|
|
+ */
|
|
|
|
+ public void setName(@Nullable Component name) {
|
|
|
|
+ this.name = name;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the entity involved in this event.
|
|
|
|
+ *
|
|
|
|
+ * @return the entity
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public LivingEntity getEntity() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return this.entity;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets the entity involved in this event.
|
|
|
|
+ *
|
|
|
|
+ * @param entity the entity
|
|
|
|
+ */
|
|
|
|
+ public void setEntity(@NotNull LivingEntity entity) {
|
|
|
|
+ this.entity = entity;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets whether this will set the mob to be persistent.
|
|
|
|
+ *
|
|
|
|
+ * @return persistent
|
|
|
|
+ */
|
|
|
|
+ public boolean isPersistent() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return this.persistent;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets whether this will set the mob to be persistent.
|
|
|
|
+ *
|
|
|
|
+ * @param persistent persistent
|
|
|
|
+ */
|
|
|
|
+ public void setPersistent(boolean persistent) {
|
|
|
|
+ this.persistent = persistent;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean isCancelled() {
|
2024-02-01 10:15:57 +01:00
|
|
|
+ return this.cancelled;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setCancelled(boolean cancel) {
|
|
|
|
+ this.cancelled = cancel;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @NotNull
|
|
|
|
+ @Override
|
|
|
|
+ public HandlerList getHandlers() {
|
|
|
|
+ return HANDLER_LIST;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @NotNull
|
|
|
|
+ public static HandlerList getHandlerList() {
|
|
|
|
+ return HANDLER_LIST;
|
|
|
|
+ }
|
|
|
|
+}
|