forked from VoxeLibre/VoxeLibre
Improve /seed command (now it looks like in modern MC) and update RU locale
This commit is contained in:
parent
e322a9e23a
commit
37e72e333b
|
@ -11,9 +11,9 @@ Can use /say=Можно использовать /say
|
|||
<message>=<сообщение>
|
||||
Send a message to every player=Отправляет сообщение всем игрокам
|
||||
Invalid usage, see /help say.=Недопустимое использование, см. /help say.
|
||||
<X>,<Y>,<Z> <NodeString>=<X>,<Y>,<Z> <СтрокаУзла>
|
||||
Set node at given position=Устанавливает узел в заданной позиции
|
||||
Invalid node=Неправильный узел
|
||||
<X>,<Y>,<Z> <NodeString>=<X>,<Y>,<Z> <ИмяБлока>
|
||||
Set node at given position=Устанавливает блок в заданной позиции
|
||||
Invalid node=Неправильный блок
|
||||
@1 spawned.=@1 возродился(ась).
|
||||
Invalid parameters (see /help setblock)=Недопустимые параметры (см. /help setblock)
|
||||
List bans=Список банов
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
name = mcl_commands
|
||||
author = Wuzzy
|
||||
description = MCL2 commands
|
||||
depends = mcl_colors
|
||||
|
|
|
@ -5,6 +5,6 @@ minetest.register_chatcommand("seed", {
|
|||
params = "",
|
||||
privs = {},
|
||||
func = function(name)
|
||||
minetest.chat_send_player(name, "Seed: "..minetest.get_mapgen_setting("seed"))
|
||||
minetest.chat_send_player(name, "Seed: ["..minetest.colorize(mcl_colors.GREEN, ""..minetest.get_mapgen_setting("seed")).."]")
|
||||
end
|
||||
})
|
Loading…
Reference in New Issue