mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-26 16:30:52 +01:00
Fixed a NullPointerException
This commit is contained in:
parent
9b15464fd1
commit
2e6d2b69a9
@ -1718,6 +1718,7 @@ public class Room implements Comparable<Room>, ISerialize, Runnable
|
||||
boolean isRiding = false;
|
||||
if(unit.getRoomUnitType() == RoomUnitType.USER) {
|
||||
Habbo rollingHabbo = this.getHabbo(unit);
|
||||
if(rollingHabbo != null && rollingHabbo.getHabboInfo() != null) {
|
||||
RideablePet riding = rollingHabbo.getHabboInfo().getRiding();
|
||||
if (riding != null) {
|
||||
RoomUnit ridingUnit = riding.getRoomUnit();
|
||||
@ -1728,6 +1729,7 @@ public class Room implements Comparable<Room>, ISerialize, Runnable
|
||||
isRiding = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
rolledUnitIds.add(unit.getId());
|
||||
updatedUnit.remove(unit);
|
||||
|
Loading…
Reference in New Issue
Block a user