mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
Fixed WiredEffectMatchFurni to no longer send furniture under users. (Like Habbo)
This commit is contained in:
parent
d1f811ad94
commit
f00c5136cd
@ -89,11 +89,12 @@ public class WiredEffectMatchFurni extends InteractionWiredEffect {
|
|||||||
if (t != null && t.state != RoomTileState.INVALID) {
|
if (t != null && t.state != RoomTileState.INVALID) {
|
||||||
boolean canMove = true;
|
boolean canMove = true;
|
||||||
|
|
||||||
if (t.x == item.getX() && t.y == item.getY()) {
|
if (t.x == item.getX() && t.y == item.getY() || room.hasHabbosAt(t.x, t.y)) {
|
||||||
canMove = !(room.getTopItemAt(t.x, t.y) == item);
|
canMove = !(room.getTopItemAt(t.x, t.y) == item);
|
||||||
slideAnimation = false;
|
slideAnimation = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (canMove && !room.hasHabbosAt(t.x, t.y)) {
|
if (canMove && !room.hasHabbosAt(t.x, t.y)) {
|
||||||
THashSet<RoomTile> tiles = room.getLayout().getTilesAt(t, item.getBaseItem().getWidth(), item.getBaseItem().getLength(), setting.rotation);
|
THashSet<RoomTile> tiles = room.getLayout().getTilesAt(t, item.getBaseItem().getWidth(), item.getBaseItem().getLength(), setting.rotation);
|
||||||
double highestZ = -1d;
|
double highestZ = -1d;
|
||||||
|
Loading…
Reference in New Issue
Block a user