blob: 524afe6f2f4a4daacff023c658eb7325f9ea9557 (
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
28
29
30
31
32
33
34
35
36
|
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 Prevent implements StorageObject
{
private boolean lavaFlow = false;
private boolean waterFlow = false;
// private boolean waterbucketFlow = false; TODO: Test if this still works
private boolean firespread = true;
private boolean lavaFirespread = true;
private boolean lightningFirespread = true;
private boolean portalCreation = false;
private boolean tntExplosion = false;
private boolean fireballExplosion = false;
private boolean fireballFire = false;
private boolean creeperExplosion = false;
private boolean creeperBlockdamage = false;
private boolean enderdragonBlockdamage = false;
private boolean witherSpawnExplosion = false;
private boolean witherskullExplosion = false;
private boolean witherBlockreplace = false;
private boolean endermanPickup = false;
private boolean villagerDeath = false;
@Comment(
{
"Monsters won't follow players", "permission essentials.protect.entitytarget.bypass disables this"
})
private boolean entitytarget = false;
}
|