add first patch
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
console.info("[SOCIETY] disableQuarkMysticalFlowers.js loaded");
|
||||
|
||||
BlockEvents.rightClicked((e) => {
|
||||
if (e.block.hasTag("botania:mystical_flowers")) {
|
||||
e.cancel();
|
||||
}
|
||||
});
|
||||
BlockEvents.rightClicked((e) => {
|
||||
if (
|
||||
e.block.hasTag("dewdrop:waterable") &&
|
||||
e.level.getBlock(e.block.getPos().above()).hasTag("botania:mystical_flowers")
|
||||
) {
|
||||
e.cancel();
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user