diff options
author | Zefram <zefram@fysh.org> | 2014-04-26 21:12:10 +0100 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-04-27 14:43:25 -0400 |
commit | e10335e952f8c949de20e70ceba373b899d3ca7b (patch) | |
tree | 2cd1fd18e48d8822a80ed8d1cc7d6cfe554f4f72 | |
parent | f5041784212a5045538983f41e1fc73bf79277a8 (diff) |
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.
-rw-r--r-- | technic_chests/common.lua | 6 |
1 files 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 |