mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-02 14:31:05 +01:00
10 lines
No EOL
337 B
Lua
10 lines
No EOL
337 B
Lua
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
minetest.register_chatcommand("seed", {
|
|
description = S("Displays the world seed"),
|
|
params = "",
|
|
privs = {},
|
|
func = function(name)
|
|
minetest.chat_send_player(name, "Seed: ["..minetest.colorize(mcl_colors.GREEN, ""..minetest.get_mapgen_setting("seed")).."]")
|
|
end
|
|
}) |