Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
36f34f01c0
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: da9ef3c5 #496: Add methods to get/set ItemStacks in EquipmentSlots 3abebc9f #492: Let Tameable extend Animals rather than Entity 941111a0 #495: Expose ItemStack and hand used in PlayerShearEntityEvent 4fe19cae #494: InventoryView - Add missing Brewing FUEL_TIME CraftBukkit Changes:933e9094
#664: Add methods to get/set ItemStacks in EquipmentSlots18722312
#662: Expose ItemStack and hand used in PlayerShearEntityEvent
65 Zeilen
2.0 KiB
Diff
65 Zeilen
2.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: MisterVector <whizkid3000@hotmail.com>
|
|
Date: Fri, 26 Oct 2018 21:33:13 -0700
|
|
Subject: [PATCH] Add PlayerPostRespawnEvent
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/event/player/PlayerPostRespawnEvent.java b/src/main/java/com/destroystokyo/paper/event/player/PlayerPostRespawnEvent.java
|
|
new file mode 100644
|
|
index 0000000000000000000000000000000000000000..31f34b54801f6699ce43355fa2a0a51f1ad0c997
|
|
--- /dev/null
|
|
+++ b/src/main/java/com/destroystokyo/paper/event/player/PlayerPostRespawnEvent.java
|
|
@@ -0,0 +1,52 @@
|
|
+package com.destroystokyo.paper.event.player;
|
|
+
|
|
+import org.bukkit.Location;
|
|
+import org.bukkit.entity.Player;
|
|
+import org.bukkit.event.HandlerList;
|
|
+import org.bukkit.event.player.PlayerEvent;
|
|
+import org.jetbrains.annotations.NotNull;
|
|
+
|
|
+/**
|
|
+ * Fired after a player has respawned
|
|
+ */
|
|
+public class PlayerPostRespawnEvent extends PlayerEvent {
|
|
+ private final static HandlerList handlers = new HandlerList();
|
|
+ private final Location respawnedLocation;
|
|
+ private final boolean isBedSpawn;
|
|
+
|
|
+ public PlayerPostRespawnEvent(@NotNull final Player respawnPlayer, @NotNull final Location respawnedLocation, final boolean isBedSpawn) {
|
|
+ super(respawnPlayer);
|
|
+ this.respawnedLocation = respawnedLocation;
|
|
+ this.isBedSpawn = isBedSpawn;
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Returns the location of the respawned player
|
|
+ *
|
|
+ * @return location of the respawned player
|
|
+ */
|
|
+ @NotNull
|
|
+ public Location getRespawnedLocation() {
|
|
+ return respawnedLocation.clone();
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Checks if the player respawned to their bed
|
|
+ *
|
|
+ * @return whether the player respawned to their bed
|
|
+ */
|
|
+ public boolean isBedSpawn() {
|
|
+ return isBedSpawn;
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ @NotNull
|
|
+ public HandlerList getHandlers() {
|
|
+ return handlers;
|
|
+ }
|
|
+
|
|
+ @NotNull
|
|
+ public static HandlerList getHandlerList() {
|
|
+ return handlers;
|
|
+ }
|
|
+}
|