mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-01-18 23:46:28 +01:00
Wired "Change Furni Direction" now activates even if the Habbo is sitting in a chair. See merge request morningstar/Arcturus-Community!308
This commit is contained in:
parent
683ff1dd1d
commit
1932eb856f
@ -12,7 +12,7 @@ Arcturus Morningstar is released under the [GNU General Public License v3](https
|
|||||||
|
|
||||||
## Versions ##
|
## Versions ##
|
||||||
![image](https://img.shields.io/badge/VERSION-2.4.0-success.svg?style=for-the-badge&logo=appveyor)
|
![image](https://img.shields.io/badge/VERSION-2.4.0-success.svg?style=for-the-badge&logo=appveyor)
|
||||||
![image](https://img.shields.io/badge/STATUS-UNSTABLE-red.svg?style=for-the-badge&logo=appveyor)
|
![image](https://img.shields.io/badge/STATUS-STABLE-blue.svg?style=for-the-badge&logo=appveyor)
|
||||||
|
|
||||||
Compiled Download: https://git.krews.org/morningstar/Arcturus-Community/releases
|
Compiled Download: https://git.krews.org/morningstar/Arcturus-Community/releases
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ public class WiredEffectChangeFurniDirection extends InteractionWiredEffect {
|
|||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (targetTile != null && targetTile.state == RoomTileState.OPEN) {
|
if (targetTile != null && targetTile.state != RoomTileState.INVALID) {
|
||||||
boolean hasHabbos = false;
|
boolean hasHabbos = false;
|
||||||
for (Habbo habbo : room.getHabbosAt(targetTile)) {
|
for (Habbo habbo : room.getHabbosAt(targetTile)) {
|
||||||
hasHabbos = true;
|
hasHabbos = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user