Merge branch 'fix/room-lay-rotation' into 'dev'

Fix lay rotation with beds from FurniBuilder

See merge request morningstar/Arcturus-Community!451
This commit is contained in:
ArpyAge 2021-10-08 21:09:53 +00:00
commit e0a1b33e16

View File

@ -1672,7 +1672,7 @@ public class Room implements Comparable<Room>, ISerialize, Runnable {
} else {
if (!unit.hasStatus(RoomUnitStatus.LAY)) {
unit.setStatus(RoomUnitStatus.LAY, Item.getCurrentHeight(topItem) * 1.0D + "");
unit.setRotation(RoomUserRotation.values()[topItem.getRotation()]);
unit.setRotation(RoomUserRotation.values()[topItem.getRotation() % 4]);
if (topItem.getRotation() == 0 || topItem.getRotation() == 4) {
unit.setLocation(this.layout.getTile(unit.getX(), topItem.getY()));