Skip to content

Commit

Permalink
Fixing chunk/block/tile drag-and-drop.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Feb 2, 2015
1 parent 1657a6d commit 41490fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SonLVL/Extensions.cs
Expand Up @@ -85,7 +85,7 @@ public static void Move<T>(this IList<T> list, int src, int dst)
{
T tmp = list[src];
list.Insert(dst, tmp);
list.RemoveAt(src);
list.RemoveAt(src > dst ? src + 1 : src);
}
}
}

0 comments on commit 41490fe

Please sign in to comment.