Line 87:
if (ItemBlacklist.Contains(droppedItem.item.name))
should be:
if (ItemBlacklist.Contains(droppedItem.item.shortname))
That will make the black list work correctly.
if (ItemBlacklist.Contains(droppedItem.item.name))
should be:
if (ItemBlacklist.Contains(droppedItem.item.shortname))
That will make the black list work correctly.