remove stick properly
This commit is contained in:
parent
3cb153af98
commit
00e029e9d6
1
.packwizignore
Normal file
1
.packwizignore
Normal file
@ -0,0 +1 @@
|
||||
kubejs/README.txt
|
@ -128,6 +128,10 @@ hash = "0328551a975daba1d595c7657f70eb003c1a444e071e0fdb3a0754cc5a7d7815"
|
||||
file = "config/yosbr/options.txt"
|
||||
hash = "8e981e0a3fe5ec96b79be185991a401b54ed6c4352f52475b85c172668992c35"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/server_scripts/script.js"
|
||||
hash = "798e234f669f96a2f8c0220f295e81fea487b9fcb0aef441eca88f2d1b721756"
|
||||
|
||||
[[files]]
|
||||
file = "mods/addadd.toml"
|
||||
hash = "5aaa96444fe4ef2d6e723493d1d5f8727929f588f55fcbaea966dd33545f8082"
|
||||
@ -1116,7 +1120,3 @@ metafile = true
|
||||
[[files]]
|
||||
file = "resourcepacks/Better-Leaves-6.2-1.13+.zip"
|
||||
hash = "583ba4e4328a27b7c81353edf9aa1943143d12780f41316038aa7071a744865f"
|
||||
|
||||
[[files]]
|
||||
file = "scripts/remove-unbalanced.js"
|
||||
hash = "0fcb62e8c988ab0ca6e661a1e84260d9141df5bc19728e2593952d37ff05d6ac"
|
||||
|
15
kubejs/README.txt
Normal file
15
kubejs/README.txt
Normal file
@ -0,0 +1,15 @@
|
||||
Find more info on the website: https://kubejs.com/
|
||||
|
||||
Directory information:
|
||||
|
||||
assets - Acts as a resource pack, you can put any client resources in here, like textures, models, etc. Example: assets/kubejs/textures/item/test_item.png
|
||||
data - Acts as a datapack, you can put any server resources in here, like loot tables, functions, etc. Example: data/kubejs/loot_tables/blocks/test_block.json
|
||||
|
||||
startup_scripts - Scripts that get loaded once during game startup - Used for adding items and other things that can only happen while the game is loading (Can be reloaded with /kubejs reload_startup_scripts, but it may not work!)
|
||||
server_scripts - Scripts that get loaded every time server resources reload - Used for modifying recipes, tags, loot tables, and handling server events (Can be reloaded with /reload)
|
||||
client_scripts - Scripts that get loaded every time client resources reload - Used for JEI events, tooltips and other client side things (Can be reloaded with F3+T)
|
||||
|
||||
config - KubeJS config storage. This is also the only directory that scripts can access other than world directory
|
||||
exported - Data dumps like texture atlases end up here
|
||||
|
||||
You can find type-specific logs in logs/kubejs/ directory
|
@ -1,3 +1,7 @@
|
||||
// priority: 0
|
||||
|
||||
console.info('fuck stick')
|
||||
|
||||
onEvent('recipes', event => {
|
||||
event.remove({output: 'minecraft:stick'})
|
||||
})
|
Loading…
Reference in New Issue
Block a user