2019-03-20 01:28:15 +01:00
|
|
|
From 29f3d0354d4a1dd627e60c82bd78e01655df4dc3 Mon Sep 17 00:00:00 2001
|
2015-12-23 05:06:19 +01:00
|
|
|
From: Steve Anton <anxuiz.nx@gmail.com>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Mon, 29 Feb 2016 18:13:58 -0600
|
2015-12-23 05:06:19 +01:00
|
|
|
Subject: [PATCH] Add PlayerInitialSpawnEvent
|
|
|
|
|
|
|
|
For modifying a player's initial spawn location as they join the server
|
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/event/player/PlayerInitialSpawnEvent.java b/src/main/java/com/destroystokyo/paper/event/player/PlayerInitialSpawnEvent.java
|
2015-12-23 05:06:19 +01:00
|
|
|
new file mode 100644
|
2019-03-20 01:28:15 +01:00
|
|
|
index 000000000..8e407eff1
|
2015-12-23 05:06:19 +01:00
|
|
|
--- /dev/null
|
2016-03-01 00:09:49 +01:00
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/event/player/PlayerInitialSpawnEvent.java
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -0,0 +1,47 @@
|
2016-03-01 00:09:49 +01:00
|
|
|
+package com.destroystokyo.paper.event.player;
|
2015-12-23 05:06:19 +01:00
|
|
|
+
|
|
|
|
+import org.bukkit.Location;
|
|
|
|
+import org.bukkit.entity.Player;
|
|
|
|
+import org.bukkit.event.HandlerList;
|
2016-03-01 00:09:49 +01:00
|
|
|
+import org.bukkit.event.player.PlayerEvent;
|
2019-03-20 01:28:15 +01:00
|
|
|
+import org.jetbrains.annotations.NotNull;
|
2015-12-23 05:06:19 +01:00
|
|
|
+
|
|
|
|
+public class PlayerInitialSpawnEvent extends PlayerEvent {
|
|
|
|
+ private static final HandlerList handlers = new HandlerList();
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull private Location spawnLocation;
|
2015-12-23 05:06:19 +01:00
|
|
|
+
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public PlayerInitialSpawnEvent(@NotNull final Player player, @NotNull final Location spawnLocation) {
|
2015-12-23 05:06:19 +01:00
|
|
|
+ super(player);
|
|
|
|
+ this.spawnLocation = spawnLocation;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the current spawn location
|
|
|
|
+ *
|
|
|
|
+ * @return Location current spawn location
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2015-12-23 05:06:19 +01:00
|
|
|
+ public Location getSpawnLocation() {
|
|
|
|
+ return this.spawnLocation;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets the new spawn location
|
|
|
|
+ *
|
|
|
|
+ * @param spawnLocation new location for the spawn
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public void setSpawnLocation(@NotNull Location spawnLocation) {
|
2015-12-23 05:06:19 +01:00
|
|
|
+ this.spawnLocation = spawnLocation;
|
|
|
|
+ }
|
|
|
|
+
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2015-12-23 05:06:19 +01:00
|
|
|
+ @Override
|
|
|
|
+ public HandlerList getHandlers() {
|
|
|
|
+ return handlers;
|
|
|
|
+ }
|
|
|
|
+
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2015-12-23 05:06:19 +01:00
|
|
|
+ public static HandlerList getHandlerList() {
|
|
|
|
+ return handlers;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
--
|
2019-03-20 01:28:15 +01:00
|
|
|
2.21.0
|
2015-12-23 05:06:19 +01:00
|
|
|
|