Skip to content

Commit

Permalink
swap blueberry names
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed Sep 7, 2020
1 parent e3009dc commit 8f43b92
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions farming.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,20 @@ minetest.register_craftitem(":farming:dough", {
description = "Dough",
inventory_image = "farming_dough.png",
})

-- swap farming/default blueberry names
-- See: https://github.com/pandorabox-io/pandorabox-mods/pull/997

--[[
Comment by @OgelGames:
> default:blueberries should be wild, because they grow on bushes,
> and farming:blueberries should not be wild because they grow as a small plant
--]]

minetest.override_item("default:blueberries", {
description = farming.intllib("Blueberries")
})

minetest.override_item("farming:blueberries", {
description = default.get_translator("Blueberries")
})

0 comments on commit 8f43b92

Please sign in to comment.