5 lines
116 B
JavaScript
5 lines
116 B
JavaScript
ItemEvents.rightClicked(event => {
|
|
if (event.item.hasTag('tfc:nonplaceable')) {
|
|
event.cancel()
|
|
}
|
|
})
|