mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 15:23:51 +01:00
Books: Add nil value checks to the book formspec handler
This commit is contained in:
parent
175a9f8ff5
commit
da7e8e4810
@ -80,7 +80,8 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
|
||||
local inv = player:get_inventory()
|
||||
local stack = player:get_wielded_item()
|
||||
|
||||
if fields.save and fields.title ~= "" and fields.text ~= "" then
|
||||
if fields.save and fields.title and fields.text
|
||||
and fields.title ~= "" and fields.text ~= "" then
|
||||
local new_stack, data
|
||||
if stack:get_name() ~= "default:book_written" then
|
||||
local count = stack:get_count()
|
||||
|
Loading…
Reference in New Issue
Block a user