1
0
mirror of https://github.com/minetest/minetest_game.git synced 2024-09-16 17:10:19 +02:00

Replace deprecated meta:set_string() call

This commit is contained in:
Niklp 2024-06-29 16:23:01 +02:00 committed by sfan5
parent 599dedd927
commit da0509c5bd

View File

@ -284,7 +284,7 @@ function default.chest.register_chest(prefixed_name, d)
nodenames = {name},
action = function(pos, node)
local meta = minetest.get_meta(pos)
meta:set_string("formspec", nil)
meta:set_string("formspec", "")
local inv = meta:get_inventory()
local list = inv:get_list("default:chest")
if list then