Add PlayerMicroMoveEvent
This commit is contained in:
47
Spigot-API-Patches/Add-PlayerMicroMoveEvent.patch
Normal file
47
Spigot-API-Patches/Add-PlayerMicroMoveEvent.patch
Normal file
@@ -0,0 +1,47 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Techcable <Techcable@outlook.com>
|
||||
Date: Thu, 23 Jul 2015 03:19:57 -0700
|
||||
Subject: [PATCH] Add PlayerMicroMoveEvent
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/github/paperspigot/event/PlayerMicroMoveEvent.java b/src/main/java/org/github/paperspigot/event/PlayerMicroMoveEvent.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/org/github/paperspigot/event/PlayerMicroMoveEvent.java
|
||||
@@ -0,0 +0,0 @@
|
||||
+package org.github.paperspigot.event;
|
||||
+
|
||||
+import org.bukkit.Location;
|
||||
+import org.bukkit.entity.Player;
|
||||
+import org.bukkit.event.HandlerList;
|
||||
+import org.bukkit.event.player.PlayerMoveEvent;
|
||||
+
|
||||
+/**
|
||||
+ * This event is fired for player movements that are too small to track with PlayerMoveEvent.
|
||||
+ *
|
||||
+ * When used in combination with PlayerMoveEvent, it is possible to keep track of all
|
||||
+ * PacketPlayInFlying movements. This can be particularly useful for anti-cheat plugins.
|
||||
+ *
|
||||
+ * Please note this event is not intended for casual use. Plugins that casually use this event
|
||||
+ * may cause significant overhead depending on handler logic.
|
||||
+ */
|
||||
+public class PlayerMicroMoveEvent extends PlayerMoveEvent {
|
||||
+ private static final HandlerList handlerList = new HandlerList();
|
||||
+
|
||||
+ public PlayerMicroMoveEvent(Player player, Location from, Location to) {
|
||||
+ super(player, from, to);
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ public HandlerList getHandlers() {
|
||||
+ return getHandlerList();
|
||||
+ }
|
||||
+
|
||||
+ public static HandlerList getHandlerList() {
|
||||
+ return handlerList;
|
||||
+ }
|
||||
+}
|
||||
--
|
||||
1.9.5.msysgit.1
|
||||
|
||||
Reference in New Issue
Block a user