1
0
mirror of https://codeberg.org/tenplus1/bonemeal.git synced 2025-07-12 13:20:28 +02:00
This commit is contained in:
tenplus1
2023-08-08 18:08:25 +01:00
parent 6d21268470
commit 2db3f4b026
3 changed files with 1 additions and 16 deletions

View File

@ -7,7 +7,7 @@ local min, max, random = math.min, math.max, math.random
-- translation support
local S = function(s) return s end -- default boilerplate function
if minetest.get_translator ~= nil then
if minetest.get_translator then
S = minetest.get_translator("bonemeal") -- 5.x translation function
end