summaryrefslogtreecommitdiffstats
path: root/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/actions/types/SpecialAction.java
blob: 5e4a93b3dcac238d5c6a8b0e5edb4683d5aafd0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.earth2me.essentials.anticheat.actions.types;

import com.earth2me.essentials.anticheat.actions.Action;


/**
 * Do something check-specific. Usually that is to cancel the event, undo something the player did, or do something the
 * server should've done
 *
 */
public class SpecialAction extends Action
{
	public SpecialAction()
	{
		super("cancel", 0, 0);
	}

	public String toString()
	{
		return "cancel";
	}
}