mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 01:21:05 +01:00
Fix crash when signing book without pointing node
This commit is contained in:
parent
f64bf438e7
commit
9c288ef2aa
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ minetest.register_on_player_receive_fields(function ( player, formname, fields )
|
|||
local book = player:get_wielded_item()
|
||||
local name = player:get_player_name()
|
||||
if book:get_name() == "mcl_books:writable_book" then
|
||||
write(book, player)
|
||||
write(book, player, { type = "nothing" })
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Reference in a new issue