homedecor beds not compatible with current beds mod

master
Jordan Irwin 2021-07-20 20:49:10 -07:00
parent a3b114562b
commit fbca874552
2 changed files with 8 additions and 2 deletions

View File

@ -8,6 +8,7 @@ easy (priority 1):
- edit <world_path>/players.sqlite database & add home_gui positions so <world_path>/home_gui.home can be deleted
- pbmarks:
- fix so players don't teleport into walls
- fix homedecor beds
easy (priority 2):
------------------
@ -29,6 +30,7 @@ hard (priority 1):
- add option to disallow setting bookmarks in areas owned/protected by other players
- cmer_shark:
- fix spawning
- fix throwing bows (not compatible with current wielded_light)
hard (priority 2):
------------------

View File

@ -68,8 +68,12 @@ homedecor.register("bed_regular", {
homedecor.bed_expansion(pos, clicker, itemstack, pointed_thing, true)
return itemstack
else
-- bed_on_rightclick(pos, node, clicker)
beds.on_rightclick(pos, clicker)
-- FIXME: not compatible with current beds mod
if beds.on_rightclick then
--bed_on_rightclick(pos, node, clicker)
beds.on_rightclick(pos, clicker)
end
return itemstack
end
end