Remove extra logging and discord bot test

This commit is contained in:
Chord 2016-04-24 20:36:36 -04:00
parent 53488613d6
commit 30a94a0725
4 changed files with 9 additions and 36 deletions

View file

@ -141,7 +141,7 @@ final case class LoginMessage(majorVersion : Long,
object LoginMessage extends Marshallable[LoginMessage] {
private def username = PacketHelpers.encodedStringAligned(7)
private def password = PacketHelpers.encodedString
private def tokenPath = fixedSizeBytes(32, ascii) :: username
private def tokenPath = fixedSizeBytes(32, bytes) :: username
private def passwordPath = username :: password
type Struct = String :: Option[String] :: Option[String] :: HNil