From 8aca5d7d4850d7233c88a376a9e64b61a402f631 Mon Sep 17 00:00:00 2001 From: rudzik8 Date: Mon, 2 May 2022 11:51:44 +0700 Subject: [PATCH] Oops! --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 595545f..f8d2ef2 100644 --- a/init.lua +++ b/init.lua @@ -29,7 +29,7 @@ minetest.register_chatcommand("sit", { mcl_player.player_attached[name] = false mcl_player.player_set_animation(player, "stand", 30) if mcl_cozy_print_status then - minetest.chat_send_all("* "..name..S(" got up")) + minetest.chat_send_all("* "..name..S(" stands up")) end else player:set_eye_offset({x=0, y=-7, z=2}, {x=0, y=0, z=0}) @@ -37,7 +37,7 @@ minetest.register_chatcommand("sit", { mcl_player.player_attached[name] = true mcl_player.player_set_animation(player, "sit", 30) if mcl_cozy_print_actions then - minetest.chat_send_all("* "..name..S(" sat down")) + minetest.chat_send_all("* "..name..S(" sits") end mcl_title.set(player, "actionbar", {text=S("Move to stand up"), color="white", stay=60}) end @@ -54,7 +54,7 @@ minetest.register_chatcommand("lay", { mcl_player.player_attached[name] = false mcl_player.player_set_animation(player, "stand", 30) if mcl_cozy_print_actions then - minetest.chat_send_all("* "..name..S(" got up")) + minetest.chat_send_all("* "..name..S(" stands up")) end else player:set_eye_offset({x=0, y=-13, z=0}, {x=0, y=0, z=0}) @@ -62,7 +62,7 @@ minetest.register_chatcommand("lay", { mcl_player.player_attached[name] = true mcl_player.player_set_animation(player, "lay", 0) if mcl_cozy_print_actions then - minetest.chat_send_all("* "..name..S(" lay down")) + minetest.chat_send_all("* "..name..S(" lies")) end mcl_title.set(player, "actionbar", {text=S("Move to stand up"), color="white", stay=60}) end