mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-13 05:20:18 +01:00
Books: Add nil value checks to the book formspec handler
This commit is contained in:
parent
a56274c230
commit
706844e8bf
|
@ -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