File tree 1 file changed +6
-1
lines changed
src/main/kotlin/dev/sterner/api/item
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
package dev.sterner.api.item
2
2
3
+ import dev.sterner.common.item.tool.ichor.IchoriumScytheItem
3
4
import dev.sterner.common.item.tool.ichor.IchoriumTerraformer
4
5
import dev.sterner.common.item.tool.ichor.IchoriumVorpal
5
6
import dev.sterner.registry.VoidBoundTags
@@ -18,7 +19,8 @@ enum class ItemAbility: StringRepresentable {
18
19
MINING_5X5 ,// Fully implemented
19
20
VAMPIRISM ,// Fully implemented
20
21
HARVEST ,// Fully implemented
21
- OPENER ;// Fully implemented
22
+ OPENER ,// Fully implemented
23
+ PROPAGATION ;// TODO implement
22
24
23
25
override fun getSerializedName (): String {
24
26
return this .name.lowercase()
@@ -48,6 +50,9 @@ enum class ItemAbility: StringRepresentable {
48
50
list.add(OPENER )
49
51
list.add(HARVEST )
50
52
}
53
+ if (item is IchoriumScytheItem ) {
54
+ list.add(PROPAGATION )
55
+ }
51
56
52
57
return list
53
58
}
You can’t perform that action at this time.
0 commit comments