9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
/**
|
|
* Block modification.
|
|
* Only used for one thing at the moment.
|
|
*/
|
|
BlockEvents.modification(event => {
|
|
event.modify("watercollector:watercollector", block => {
|
|
block.destroySpeed = 0.3
|
|
})
|
|
})
|