Fix the enchanting table book entity spawning multiple times as reported in issue #1008.

This commit is contained in:
MysticTempest 2021-02-11 19:25:54 -06:00
parent 0ec64189dc
commit 846b1d273d
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ minetest.register_lbm({
nodenames = {"mcl_enchanting:table"},
run_at_every_load = true,
action = function(pos)
spawn_book_entity(pos)
spawn_book_entity(pos, true)
end,
})