From 5495801fd0f06f6dbf12ad607aec2a0c16a0544b Mon Sep 17 00:00:00 2001 From: An0n3m0us Date: Wed, 26 Feb 2020 08:58:28 +0000 Subject: [PATCH] Fix stuff --- mods/beds/functions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/beds/functions.lua b/mods/beds/functions.lua index e99c657c..5f3572de 100644 --- a/mods/beds/functions.lua +++ b/mods/beds/functions.lua @@ -85,14 +85,14 @@ local function lay_down(player, pos, bed_pos, state, skip) -- Check if bed is occupied for _, other_pos in pairs(beds.bed_position) do if vector.distance(bed_pos, other_pos) < 0.1 then - minetest.chat_send_player(name, S("This bed is already occupied.")) + minetest.chat_send_player(name, S("This bed is already occupied!")) return false end end -- Check if player is moving if vector.length(player:get_player_velocity()) > 0.001 then - minetest.chat_send_player(name, S("You have to stop moving before going to bed.")) + minetest.chat_send_player(name, S("You have to stop moving before going to bed!")) return false end