mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-05 01:05:05 +00:00
Fix /seed giving wrong seed
This commit is contained in:
parent
81d5d8b942
commit
d61da938f4
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ minetest.register_chatcommand("seed", {
|
|||
params = "",
|
||||
privs = {},
|
||||
func = function(name)
|
||||
minetest.chat_send_player(name, string.format("%d", minetest.get_mapgen_setting("seed")))
|
||||
minetest.chat_send_player(name, minetest.get_mapgen_setting("seed"))
|
||||
end
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue