mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 07:20:50 +01:00
Fixed NullPointer in InteractionRoller
This commit is contained in:
parent
05b0517e8d
commit
b68842d172
@ -82,7 +82,7 @@ public class InteractionRoller extends HabboItem
|
|||||||
|
|
||||||
for (Pair<RoomTile, THashSet<HabboItem>> set : itemsAtLocation)
|
for (Pair<RoomTile, THashSet<HabboItem>> set : itemsAtLocation)
|
||||||
{
|
{
|
||||||
if (!set.getValue().isEmpty())
|
if (set.getValue() != null && !set.getValue().isEmpty())
|
||||||
{
|
{
|
||||||
if (set.getValue().size() > 1)
|
if (set.getValue().size() > 1)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user