Add PlayerMicroMoveEvent
This commit is contained in:
parent
e139db70f1
commit
23f4ae7bbd
2 changed files with 86 additions and 0 deletions
47
Spigot-API-Patches/0012-Add-PlayerMicroMoveEvent.patch
Normal file
47
Spigot-API-Patches/0012-Add-PlayerMicroMoveEvent.patch
Normal file
|
@ -0,0 +1,47 @@
|
|||
From 459f653fc31bb56279122a2cee50f0e46e9bf37f 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 0000000..e57a377
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/org/github/paperspigot/event/PlayerMicroMoveEvent.java
|
||||
@@ -0,0 +1,32 @@
|
||||
+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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue