FurniBuilder has a wrong starting rotation by default. Beds are placed with a starting rotation of 2, when you rotate them it becomes 4. 4 is an invalid lay direction and it should be set to 0. This is easily fixed with % 4.
Without this fix, you will be laying like this on the bed (except one tile closer as this is just a demonstration).
In GitLab by @Mike on Oct 8, 2021, 17:56
Merges fix/room-lay-rotation -> dev
FurniBuilder has a wrong starting rotation by default. Beds are placed with a starting rotation of
2
, when you rotate them it becomes4
.4
is an invalid lay direction and it should be set to0
. This is easily fixed with% 4
.Without this fix, you will be laying like this on the bed (except one tile closer as this is just a demonstration).