Fixes invalid if statement in DiscordChannel#Users
Created by: Quahu
Make sure you familiarize yourself with our contributing guidelines.
Summary
Makes it throw when it should throw.
Details
Changed if (this.Guild != null)
to if (this.Guild == null)
Notes
I assume we don't want a case for ChannelType.Group
, right?