From ca32dc17ce600a7f7ec268016150bcffb49eb948 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sun, 4 Jan 2015 17:31:30 +0000 Subject: Fix bug --- food_basic/depends.txt | 2 -- food_basic/ingredients.lua | 9 +++++++++ food_basic/init.lua | 8 ++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) (limited to 'food_basic') diff --git a/food_basic/depends.txt b/food_basic/depends.txt index 974ed7c..bb93f51 100644 --- a/food_basic/depends.txt +++ b/food_basic/depends.txt @@ -3,10 +3,8 @@ animalmaterials? bushes_classic? default? docfarming? -diet? farming? farming_plus? -hud? intllib? jkanimals? jkfarming? diff --git a/food_basic/ingredients.lua b/food_basic/ingredients.lua index 5d30ff1..cd33fb3 100644 --- a/food_basic/ingredients.lua +++ b/food_basic/ingredients.lua @@ -6,6 +6,15 @@ -- Fallback ingredients -- ===================================== +-- Boilerplate to support localized strings if intllib mod is installed. +local S = 0 +if (intllib) then + dofile(minetest.get_modpath("intllib").."/intllib.lua") + S = intllib.Getter(minetest.get_current_modname()) +else + S = function ( s ) return s end +end + food.module("wheat", function() minetest.register_craftitem(":food:wheat", { description = S("Wheat"), diff --git a/food_basic/init.lua b/food_basic/init.lua index 8e1aa8e..5e84fd4 100644 --- a/food_basic/init.lua +++ b/food_basic/init.lua @@ -11,6 +11,14 @@ print("Food Mod - Version 2.3") dofile(minetest.get_modpath("food_basic").."/support.lua") dofile(minetest.get_modpath("food_basic").."/ingredients.lua") +-- Boilerplate to support localized strings if intllib mod is installed. +local S = 0 +if (intllib) then + dofile(minetest.get_modpath("intllib").."/intllib.lua") + S = intllib.Getter(minetest.get_current_modname()) +else + S = function ( s ) return s end +end -- Register dark chocolate food.module("dark_chocolate", function() -- cgit v1.2.3