server: /give: show the actual stackstring

master
Jonathan Neuschäfer 2012-02-11 03:16:44 +01:00
parent 50110e00e8
commit 806f10524f
1 changed files with 3 additions and 0 deletions

View File

@ -1778,6 +1778,9 @@ local function handle_give_command(cmd, giver, receiver, stackstring)
else
partiality = "partially "
end
-- The actual item stack string may be different from what the "giver"
-- entered (e.g. big numbers are always interpreted as 2^16-1).
stackstring = itemstack:to_string()
if giver == receiver then
minetest.chat_send_player(giver, '"'..stackstring
..'" '..partiality..'added to inventory.');