
i know where the issue lies:
sand you can get from Gems, water and a few other things, so its an infinite loop and cause the game to error.
here is the download
edit:
changing this:
Code: Select all
ingredients =
{
{type="item", name="ruby-orex", amount=1}
},
results =
{
{type="item", name="stone", amount_min=1, amount_max=6, probability=1},
{type="item", name="sand", amount_min=1, amount_max=50, probability=0.2},
},
Code: Select all
ingredients =
{
{type="item", name="ruby-orex", amount=1}
},
results =
{
{type="item", name="stone", amount_min=1, amount_max=6, probability=1},
--{type="item", name="sand", amount_min=1, amount_max=50, probability=0.2},
},