summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/settings/protect/Protect.java
blob: ff4af10ff4c94b5674c870ae3ebaa73467d45fbb (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
27
package net.ess3.settings.protect;

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


@Data
@EqualsAndHashCode(callSuper = false)
public class Protect implements StorageObject
{
	@Comment("General physics/behavior modifications")
	private Prevent prevent = new Prevent();
	@Comment(
			{
					"Maximum height the creeper should explode. -1 allows them to explode everywhere.",
					"Set prevent.creeper-explosion to true, if you want to disable creeper explosions."
			})
	private int creeperMaxHeight = -1;

	@Comment("Disable weather options")
	private boolean disableStorm = false;
	private boolean disableThunder = false;
	private boolean disableLighting = false;

}