Fixed SocketRole.CompareTo

This commit is contained in:
RogueException
2017-03-02 06:55:09 -04:00
parent 8c75e0d581
commit 1b0e47be42
3 changed files with 5 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
namespace Discord
{
internal static class RoleExtensions
internal static class RoleUtils
{
internal static int Compare(this IRole left, IRole right)
public static int Compare(IRole left, IRole right)
{
if (left == null)
return -1;