forked from poiNt3D/SortingHopper2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
52 lines (52 loc) · 1.91 KB
/
config.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
backend: flatfile
backups_number: 5
# Names used to distinguish sorting hoppers from a normal hoppers.
# The first name in the list wll be used in the crafting recipe.
names:
- Item Sorter
- Sorter
- Filter
#Inventory size - number of rule slots in each sorter. Must be multiple of 9
inventory_size: 9
#Automatically save rules when player closes rule menu
autosave: true
#Prevent sorting hoppers from picking up items from the ground
preventitempickup: false
#Filter items picked up from the ground. "preventitempickup" must be set to false
sortitempickup: true
#Prevent players from getting sorting hoppers by renaming on the anvil
preventrename: true
# If true, the plugin will listen to block break events and if a sorter block was broken
# it will replace dropped hopper with the named one.
# In order to do so, it have to cancel the breaking event and replace block with AIR.
# WARNING! Setting this to true may cause interference with logging and protection plugins!
replacedrops: false
#If replacedrops is set to false, broken sorters will drop additional resource
#It will drop a regular hopper and add a comparator by default, which is crafting ingridients for a new Sorter
#You can set this to whatever, if you don't want any drops
add_drop: COMPARATOR
# Lore is displayed on the item
lore:
- "Only selected items will go through."
- "Rightclick to show rules"
- "Shift+rightclick with an empty hand to show hopper inventory."
rule_lore:
- "Right click: group sorting"
- "Left click: remove"
#Recipes
crafting:
# is crafting enabled at all?
enabled: true
# shaped or shapeless recipe?
shaped: false
# the recipe: for shaped, a list of 1-3 rows, each row with 1-3 letters
# for shapeless, a list of 1-9 materials in any order
recipe: ["HOPPER", "COMPARATOR"]
#Shaped recipe example:
# shaped: true
# recipe: [ "IRI", "ICI", " I " ]
# ingredients:
# I: IRON_INGOT
# R: COMPARATOR
# C: CHEST
debug: false