mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-20 01:51:06 +01:00
Fix the enchanting table book entity spawning multiple times as reported in issue #1008.
This commit is contained in:
parent
0ec64189dc
commit
846b1d273d
1 changed files with 1 additions and 1 deletions
|
@ -349,7 +349,7 @@ minetest.register_lbm({
|
||||||
nodenames = {"mcl_enchanting:table"},
|
nodenames = {"mcl_enchanting:table"},
|
||||||
run_at_every_load = true,
|
run_at_every_load = true,
|
||||||
action = function(pos)
|
action = function(pos)
|
||||||
spawn_book_entity(pos)
|
spawn_book_entity(pos, true)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue