forked from BigScary/AutomaticInventory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
56 lines (54 loc) · 1.73 KB
/
build.gradle
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
53
54
55
56
plugins {
id 'idea'
id 'kr.entree.spigradle' version '2.1.1'
}
dependencies {
compileOnly spigot("1.16.4")
}
spigot {
authors "BigScary", "Red3842"
apiVersion "1.16"
commands {
debugai {
description "Debug command for AutomaticInventory."
usage "/debugai"
permission "automaticinventory.debugai"
}
autosort {
description "Toggles auto-sorting options."
usage "/autosort"
}
depositall {
description "Deposits your non-hotbar inventory into any nearby chests containing matching items."
aliases "da", "dumpitems", "dumploot", "depositloot"
usage "/depositall"
permission "automaticinventory.depositall"
}
}
permissions {
"automaticinventory.debugai" {
description "Grants permission to use /DebugAI."
defaults "op"
}
"automaticinventory.sortinventory" {
description "Grants permission to auto-sort personal inventory."
defaults "true"
}
"automaticinventory.sortchests" {
description "Grants permission to auto-sort chest content."
defaults "true"
}
"automaticinventory.refillstacks" {
description "Grants permission to auto-refill depleted hotbar stacks."
defaults "true"
}
"automaticinventory.quickdeposit" {
description "Grants permission to auto-deposit matching items into a chest with shift-right-click."
defaults "true"
}
"automaticinventory.depositall" {
description "Grants permission to use /DepositAll."
defaults "true"
}
}
}