Merge branch 'height-fix' into 'dev'

Fix #521 "Sitting height broken"

See merge request morningstar/Arcturus-Community!265
This commit is contained in:
Harmonic 2020-07-23 14:55:02 -04:00
commit eeb53eca12

View File

@ -3570,7 +3570,7 @@ public class Room implements Comparable<Room>, ISerialize, Runnable {
HabboItem lowestChair = this.getLowestChair(x, y);
if (lowestChair != null && lowestChair != exclude) {
canStack = true;
height = lowestChair.getZ() + Item.getCurrentHeight(lowestChair);
height = lowestChair.getZ();
}
}
}