VoxeLibre/mods/MISC/mcl_commands/seed.lua

10 lines
290 B
Lua
Raw Normal View History

local S = minetest.get_translator(minetest.get_current_modname())
2021-03-05 09:47:48 +01:00
minetest.register_chatcommand("seed", {
description = S("Displays the world seed"),
params = "",
privs = {},
func = function(name)
minetest.chat_send_player(name, "Seed: "..minetest.get_mapgen_setting("seed"))
end
})