Paper/Spigot-API-Patches/0012-Add-PlayerInitialSpawnEvent.patch

60 lines
1.7 KiB
Diff
Raw Normal View History

From 3dabbf24d9e169631ff0f11df707e0623c4d2cc4 Mon Sep 17 00:00:00 2001
2015-12-23 04:06:19 +00:00
From: Steve Anton <anxuiz.nx@gmail.com>
2016-02-29 23:09:49 +00:00
Date: Mon, 29 Feb 2016 18:13:58 -0600
2015-12-23 04:06:19 +00:00
Subject: [PATCH] Add PlayerInitialSpawnEvent
For modifying a player's initial spawn location as they join the server
2016-02-29 23:09:49 +00: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 04:06:19 +00:00
new file mode 100644
2016-02-29 23:09:49 +00:00
index 0000000..d1d6f33
2015-12-23 04:06:19 +00:00
--- /dev/null
2016-02-29 23:09:49 +00:00
+++ b/src/main/java/com/destroystokyo/paper/event/player/PlayerInitialSpawnEvent.java
@@ -0,0 +1,43 @@
+package com.destroystokyo.paper.event.player;
2015-12-23 04:06:19 +00:00
+
+import org.bukkit.Location;
+import org.bukkit.entity.Player;
+import org.bukkit.event.HandlerList;
2016-02-29 23:09:49 +00:00
+import org.bukkit.event.player.PlayerEvent;
2015-12-23 04:06:19 +00:00
+
+public class PlayerInitialSpawnEvent extends PlayerEvent {
+ private static final HandlerList handlers = new HandlerList();
+ private Location spawnLocation;
+
+ public PlayerInitialSpawnEvent(final Player player, final Location spawnLocation) {
+ super(player);
+ this.spawnLocation = spawnLocation;
+ }
+
+ /**
+ * Gets the current spawn location
+ *
+ * @return Location current spawn location
+ */
+ public Location getSpawnLocation() {
+ return this.spawnLocation;
+ }
+
+ /**
+ * Sets the new spawn location
+ *
+ * @param spawnLocation new location for the spawn
+ */
+ public void setSpawnLocation(Location spawnLocation) {
+ this.spawnLocation = spawnLocation;
+ }
+
+ @Override
+ public HandlerList getHandlers() {
+ return handlers;
+ }
+
+ public static HandlerList getHandlerList() {
+ return handlers;
+ }
+}
--
2.8.0
2015-12-23 04:06:19 +00:00