forked from VoxeLibre/VoxeLibre
Fix translator modnames
This commit is contained in:
parent
aed96a4912
commit
e9b72083b3
|
@ -23,7 +23,7 @@ local function degrees(rad)
|
||||||
return rad * 180.0 / math.pi
|
return rad * 180.0 / math.pi
|
||||||
end
|
end
|
||||||
|
|
||||||
local S = minetest.get_translator("extra_mobs")
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
--###################
|
--###################
|
||||||
--################### cod
|
--################### cod
|
||||||
|
|
|
@ -23,7 +23,7 @@ local function degrees(rad)
|
||||||
return rad * 180.0 / math.pi
|
return rad * 180.0 / math.pi
|
||||||
end
|
end
|
||||||
|
|
||||||
local S = minetest.get_translator("extra_mobs")
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
--###################
|
--###################
|
||||||
--################### dolphin
|
--################### dolphin
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
--made for MC like Survival game
|
--made for MC like Survival game
|
||||||
--License for code WTFPL and otherwise stated in readmes
|
--License for code WTFPL and otherwise stated in readmes
|
||||||
|
|
||||||
local S = minetest.get_translator("extra_mobs")
|
local S = minetest.get_translator(minetest.get_current_modname())
|
||||||
|
|
||||||
--###################
|
--###################
|
||||||
--################### salmon
|
--################### salmon
|
||||||
|
|
Loading…
Reference in New Issue