summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/settings/commands/Tpa.java
blob: 83c9d4990f2e9097eb0d6979fc0c5ddd2d4eaaa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.earth2me.essentials.settings.commands;

import com.earth2me.essentials.storage.Comment;
import com.earth2me.essentials.storage.StorageObject;
import lombok.Data;
import lombok.EqualsAndHashCode;


@Data
@EqualsAndHashCode(callSuper = false)
public class Tpa implements StorageObject
{
	@Comment(
	{
		"Set timeout in seconds for players to accept tpa before request is cancelled.",
		"Set to 0 for no timeout."
	})
	private int timeout = 0;
}