Using Sortable With Different Options

Using Sortable With Different Options

So I'm trying to give a delay in dragging to a single element in my sortable <ul>. I tried this code:

$('.env-icondragdrop').sortable({
   connectWith: '.env-icondragdrop',
   items: '> *:not(#topSpacer)'
});
$('.env-icondragdrop').sortable({
   connectWith: '.env-icondragdrop',
   items: '> #topSpacer',
   delay: 2500
});

But it seems like I can't call sortable twice on something to target different items.
How can I get a delay on just #topSpacer?

-Zane Kaminski