mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-08 11:50:32 +01:00
66 lines
2.5 KiB
Diff
66 lines
2.5 KiB
Diff
|
From d9236080686e571fbec54783baccfbbcafb22116 Mon Sep 17 00:00:00 2001
|
||
|
From: Aikar <aikar@aikar.co>
|
||
|
Date: Sat, 31 Dec 2016 20:29:33 -0500
|
||
|
Subject: [PATCH] PlayerTeleportEndGatewayEvent
|
||
|
|
||
|
Allows you to access the Gateway being used in a teleport event
|
||
|
|
||
|
diff --git a/src/main/java/com/destroystokyo/paper/event/player/PlayerTeleportEndGatewayEvent.java b/src/main/java/com/destroystokyo/paper/event/player/PlayerTeleportEndGatewayEvent.java
|
||
|
new file mode 100644
|
||
|
index 00000000..8ce7ec5a
|
||
|
--- /dev/null
|
||
|
+++ b/src/main/java/com/destroystokyo/paper/event/player/PlayerTeleportEndGatewayEvent.java
|
||
|
@@ -0,0 +1,49 @@
|
||
|
+/*
|
||
|
+ * Copyright (c) 2016 Starlis LLC / Daniel Ennis (Aikar) - MIT License
|
||
|
+ *
|
||
|
+ * Permission is hereby granted, free of charge, to any person obtaining
|
||
|
+ * a copy of this software and associated documentation files (the
|
||
|
+ * "Software"), to deal in the Software without restriction, including
|
||
|
+ * without limitation the rights to use, copy, modify, merge, publish,
|
||
|
+ * distribute, sublicense, and/or sell copies of the Software, and to
|
||
|
+ * permit persons to whom the Software is furnished to do so, subject to
|
||
|
+ * the following conditions:
|
||
|
+ *
|
||
|
+ * The above copyright notice and this permission notice shall be
|
||
|
+ * included in all copies or substantial portions of the Software.
|
||
|
+ *
|
||
|
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
|
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
|
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
|
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||
|
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||
|
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||
|
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
+ */
|
||
|
+
|
||
|
+package com.destroystokyo.paper.event.player;
|
||
|
+
|
||
|
+import org.bukkit.Location;
|
||
|
+import org.bukkit.block.EndGateway;
|
||
|
+import org.bukkit.entity.Player;
|
||
|
+import org.bukkit.event.player.PlayerTeleportEvent;
|
||
|
+
|
||
|
+/**
|
||
|
+ * Fired when a teleport is triggered for an End Gateway
|
||
|
+ */
|
||
|
+public class PlayerTeleportEndGatewayEvent extends PlayerTeleportEvent {
|
||
|
+ private final EndGateway gateway;
|
||
|
+
|
||
|
+ public PlayerTeleportEndGatewayEvent(Player player, Location from, Location to, EndGateway gateway) {
|
||
|
+ super(player, from, to, PlayerTeleportEvent.TeleportCause.END_GATEWAY);
|
||
|
+ this.gateway = gateway;
|
||
|
+ }
|
||
|
+
|
||
|
+ /**
|
||
|
+ * The gateway triggering the teleport
|
||
|
+ * @return
|
||
|
+ */
|
||
|
+ public EndGateway getGateway() {
|
||
|
+ return gateway;
|
||
|
+ }
|
||
|
+}
|
||
|
--
|
||
|
2.11.0
|
||
|
|