diff options
author | KHobbits <rob@khobbits.co.uk> | 2011-12-09 04:07:53 +0000 |
---|---|---|
committer | KHobbits <rob@khobbits.co.uk> | 2011-12-09 04:07:53 +0000 |
commit | f99867dd0a2a29291a6aa32e5203efdf0f1b3a77 (patch) | |
tree | 801e7a979ea2a90b54203b4d2b2dcf92c7c55b36 | |
parent | de12c5c6d17147714c9452f76f8337dd996eb220 (diff) | |
download | Essentials-f99867dd0a2a29291a6aa32e5203efdf0f1b3a77.tar Essentials-f99867dd0a2a29291a6aa32e5203efdf0f1b3a77.tar.gz Essentials-f99867dd0a2a29291a6aa32e5203efdf0f1b3a77.tar.lz Essentials-f99867dd0a2a29291a6aa32e5203efdf0f1b3a77.tar.xz Essentials-f99867dd0a2a29291a6aa32e5203efdf0f1b3a77.zip |
Simplify the protect config file examples.
-rw-r--r-- | Essentials/src/config.yml | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/Essentials/src/config.yml b/Essentials/src/config.yml index ff77db9e0..2254bdbab 100644 --- a/Essentials/src/config.yml +++ b/Essentials/src/config.yml @@ -372,24 +372,21 @@ protect: # For which block types would you like to be alerted? # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time. + # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket alert: - # 10: lava - # 11: still lava - # 46: TNT - on-placement: 10,11,46 - on-use: - # 46: TNT + on-placement: 10,11,46,327 + on-use: 327 on-break: - # Users cannot PLACE these types of blocks/items. - # < 255 designates a BLOCK - # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.) blacklist: - placement: 327,326,14,56,46,11,10,9,8 - usage: 327,326,325 + + # Which blocks should people be prevented from placing + placement: 10,11,46,327 + + # Which items should people be prevented from using + usage: 327 - #prevent people from breaking blocks - #break: 20,50 + # Which blocks should people be prevented from breaking break: # Which blocks should not be pushed by pistons |