Fixed NullPointer in InteractionRoller

This commit is contained in:
KrewsOrg 2019-05-04 02:23:31 +01:00
parent 05b0517e8d
commit b68842d172

View File

@ -82,7 +82,7 @@ public class InteractionRoller extends HabboItem
for (Pair<RoomTile, THashSet<HabboItem>> set : itemsAtLocation)
{
if (!set.getValue().isEmpty())
if (set.getValue() != null && !set.getValue().isEmpty())
{
if (set.getValue().size() > 1)
{