mirror of
https://github.com/cfouche3005/ISEN-Tech.git
synced 2026-01-18 16:37:28 +01:00
13 lines
400 B
JavaScript
13 lines
400 B
JavaScript
// priority: 0
|
|
|
|
console.info('Hello, World! (You will only see this line once in console, during startup)')
|
|
|
|
onEvent('item.registry', event => {
|
|
// Register new items here
|
|
// event.create('example_item').displayName('Example Item')
|
|
})
|
|
|
|
onEvent('block.registry', event => {
|
|
// Register new blocks here
|
|
// event.create('example_block').material('wood').hardness(1.0).displayName('Example Block')
|
|
}) |