summaryrefslogtreecommitdiff
path: root/bushes_classic/nodes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'bushes_classic/nodes.lua')
-rw-r--r--bushes_classic/nodes.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/bushes_classic/nodes.lua b/bushes_classic/nodes.lua
index 352e2a9..e45c7e7 100644
--- a/bushes_classic/nodes.lua
+++ b/bushes_classic/nodes.lua
@@ -1,4 +1,9 @@
-local S = biome_lib.intllib
+local S
+if minetest.get_modpath("intllib") then
+ S = intllib.Getter()
+else
+ S = function(s) return s end
+end
plantlife_bushes = {}