diff --git a/TODO.txt b/TODO.txt index c77dc316..65c74047 100644 --- a/TODO.txt +++ b/TODO.txt @@ -8,6 +8,7 @@ easy (priority 1): - edit /players.sqlite database & add home_gui positions so /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): ------------------ diff --git a/mods/modpacks/homedecor/homedecor_bedroom/init.lua b/mods/modpacks/homedecor/homedecor_bedroom/init.lua index d1686e4e..b71c1ea9 100644 --- a/mods/modpacks/homedecor/homedecor_bedroom/init.lua +++ b/mods/modpacks/homedecor/homedecor_bedroom/init.lua @@ -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