fix bug in mcl_vegan_utils.

a variable name was written a wrong way.
This commit is contained in:
trans_soup 2023-07-17 00:41:02 +02:00
parent 1d1065069c
commit 25dc22eae8
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ function mcl_vegan.register_plant_items (own_mod_name, base_name, def)
groups = {
craftitem = 1,
},
inventory_image = modname .. "_" .. seed .. ".png",
inventory_image = own_mod_name .. "_" .. seed .. ".png",
on_place = plant_seed,
})
end