mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 05:42:33 +01:00
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.
This commit is contained in:
parent
f504178421
commit
e10335e952
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user