summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/settings/commands/Back.java
blob: c0e7ed7b67df6ca90987ca723dabe66545267dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package net.ess3.settings.commands;

import lombok.Data;
import lombok.EqualsAndHashCode;
import net.ess3.storage.Comment;
import net.ess3.storage.StorageObject;


@Data
@EqualsAndHashCode(callSuper = false)
public class Back implements StorageObject
{
	@Comment(
			{
					"Do you want essentials to keep track of previous location for /back in the teleport listener?",
					"If you set this to true any plugin that uses teleport will have the previous location registered."
			})
	private boolean registerBackInListener = false;
}