mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-01-18 15:36:27 +01:00
Fix placing bots
This commit is contained in:
parent
8adb814f66
commit
a8f3829216
@ -113,7 +113,7 @@ public class BotManager {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!room.hasHabbosAt(location.x, location.y) && !location.isWalkable() && location.state != RoomTileState.SIT && location.state != RoomTileState.LAY)
|
||||
if (room.hasHabbosAt(location.x, location.y) || (!location.isWalkable() && location.state != RoomTileState.SIT && location.state != RoomTileState.LAY))
|
||||
return;
|
||||
|
||||
RoomUnit roomUnit = new RoomUnit();
|
||||
|
Loading…
Reference in New Issue
Block a user