From e10335e952f8c949de20e70ceba373b899d3ca7b Mon Sep 17 00:00:00 2001 From: Zefram Date: Sat, 26 Apr 2014 21:12:10 +0100 Subject: [PATCH] Fix chest log messages All log messages about moving stuff in/into/from chests described them as "locked", whether the chests are locked or not. Remove that word, so the messages make no claim about lockedness. --- technic_chests/common.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/technic_chests/common.lua b/technic_chests/common.lua index ccf72f8..47054f5 100644 --- a/technic_chests/common.lua +++ b/technic_chests/common.lua @@ -49,19 +49,19 @@ end function technic.chests.on_inv_move(pos, from_list, from_index, to_list, to_index, count, player) minetest.log("action", player:get_player_name().. - " moves stuff in locked chest at " + " moves stuff in chest at " ..minetest.pos_to_string(pos)) end function technic.chests.on_inv_put(pos, listname, index, stack, player) minetest.log("action", player:get_player_name().. - " puts stuff in to locked chest at " + " puts stuff in to chest at " ..minetest.pos_to_string(pos)) end function technic.chests.on_inv_take(pos, listname, index, stack, player) minetest.log("action", player:get_player_name().. - " takes stuff from locked chest at " + " takes stuff from chest at " ..minetest.pos_to_string(pos)) end