summaryrefslogtreecommitdiffstats
path: root/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/actions/types/DummyAction.java
blob: d893721441daf21af37b31a19537eb9287e63d38 (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
package com.earth2me.essentials.anticheat.actions.types;

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


/**
 * If an action can't be parsed correctly, at least keep it stored in this form to not lose it when loading/storing the
 * config file
 *
 */
public class DummyAction extends Action
{
	// The original string used for this action definition
	private final String def;

	public DummyAction(String def)
	{
		super("dummyAction", 10000, 10000);
		this.def = def;
	}

	public String toString()
	{
		return def;
	}
}