summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/settings/commands/God.java
blob: a6f5dbfc31004d55c2c048a3044abce8f54898aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 God implements StorageObject
{
	@Comment("Turn off god mode when people exit")
	private boolean removeOnDisconnect = false;
}