#grass tweak

7 messages · Page 1 of 1 (latest)

twilit wind
#

so i made grass (vanilla and modded) drop an assortment of (also vanilla and modded) seeds and i also wanted to make them drop straw if the player is holding a(ny) knife though it doesnt seem to work.

loud inletBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

twilit wind
#

 if (player && player.item && player.item.isIn('#c:tools/knife')) {
    if (Math.random() < 0.55) {
      event.block.popItem('farmersdelight:straw');

potent venture
#
if (Ingredient.of('#c:tools/knife').test(player?.item)) {
  if (Math.random() < 0.55) {
    event.block.popItem('farmersdelight:straw');
twilit wind
#

that still doesnt work for some reason

#

however it doesnt bother me enough to concern myself or anyone else with it anymore

#

thank you for your time