1
0
mirror of https://codeberg.org/tenplus1/bonemeal.git synced 2025-07-12 13:20:28 +02:00

code tidy

This commit is contained in:
tenplus1
2023-03-10 14:46:38 +00:00
parent 1935d348c1
commit 2fdc3f09b7
2 changed files with 6 additions and 9 deletions

View File

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