summaryrefslogtreecommitdiffstats
path: root/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/checks/WorkaroundsListener.java
blob: 7191c0c2365eb9acadd65041b729c422e2541021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.earth2me.essentials.anticheat.checks;

import com.earth2me.essentials.anticheat.EventManager;
import com.earth2me.essentials.anticheat.config.ConfigurationCacheStore;
import java.util.Collections;
import java.util.List;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerMoveEvent;
import org.bukkit.event.player.PlayerToggleSprintEvent;


/**
 * Only place that listens to Player-teleport related events and dispatches them to relevant checks
 *
 */
public class WorkaroundsListener implements Listener, EventManager
{
	public WorkaroundsListener()
	{
	}

	@EventHandler(priority = EventPriority.HIGHEST)
	public void playerMove(final PlayerMoveEvent event)
	{
		// No typo here. I really only handle cancelled events and ignore others
		if (!event.isCancelled())
		{
			return;
		}

		// Fix a common mistake that other developers make (cancelling move
		// events is crazy, rather set the target location to the from location)
		event.setCancelled(false);
		event.setTo(event.getFrom().clone());
	}

	@EventHandler(priority = EventPriority.HIGHEST)
	public void toggleSprint(final PlayerToggleSprintEvent event)
	{
		// Some plugins cancel "sprinting", which makes no sense at all because
		// it doesn't stop people from sprinting and rewards them by reducing
		// their hunger bar as if they were walking instead of sprinting
		if (event.isCancelled() && event.isSprinting())
		{
			event.setCancelled(false);
		}
	}

	public List<String> getActiveChecks(ConfigurationCacheStore cc)
	{
		return Collections.emptyList();
	}
}