OOOOOOPS
This commit is contained in:
parent
5eaf9bbce3
commit
f477c31e75
6
init.lua
6
init.lua
|
@ -37,8 +37,8 @@ minetest.register_chatcommand("sit", {
|
||||||
mcl_player.player_attached[name] = true
|
mcl_player.player_attached[name] = true
|
||||||
mcl_player.player_set_animation(player, "sit", 30)
|
mcl_player.player_set_animation(player, "sit", 30)
|
||||||
if mcl_cozy_print_actions then
|
if mcl_cozy_print_actions then
|
||||||
minetest.chat_send_all("* "..name..S(" sits")
|
minetest.chat_send_all("* "..name..S(" sits"))
|
||||||
end,
|
end
|
||||||
mcl_title.set(player, "actionbar", {text=S("Move to stand up"), color="white", stay=60})
|
mcl_title.set(player, "actionbar", {text=S("Move to stand up"), color="white", stay=60})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -63,7 +63,7 @@ minetest.register_chatcommand("lay", {
|
||||||
mcl_player.player_set_animation(player, "lay", 0)
|
mcl_player.player_set_animation(player, "lay", 0)
|
||||||
if mcl_cozy_print_actions then
|
if mcl_cozy_print_actions then
|
||||||
minetest.chat_send_all("* "..name..S(" lies"))
|
minetest.chat_send_all("* "..name..S(" lies"))
|
||||||
end,
|
end
|
||||||
mcl_title.set(player, "actionbar", {text=S("Move to stand up"), color="white", stay=60})
|
mcl_title.set(player, "actionbar", {text=S("Move to stand up"), color="white", stay=60})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in New Issue