summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/settings/commands/Lightning.java
blob: 510857247cd1f4663e5437ce67bf365aac3f3819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 Lightning extends StorageObject
{
	@Comment("Shall we notify users when using /lightning")
	private boolean warnPlayer = true;
}