added milks to the placeable fluid blacklist

This commit is contained in:
Pyritie 2025-12-22 22:45:28 +00:00
parent 6b2d37fb20
commit c725428991
3 changed files with 11 additions and 3 deletions

View file

@ -0,0 +1,5 @@
ItemEvents.rightClicked(event => {
if (event.item.hasTag('tfc:nonplaceable')) {
event.cancel()
}
})