Correctly mark 15w39c as the supported version

This commit is contained in:
Thinkofname 2016-03-18 11:46:37 +00:00
parent 57fcd3d957
commit 99b157f2dc
2 changed files with 5 additions and 5 deletions

View File

@ -963,14 +963,14 @@ pub fn test() {
let mut c = Conn::new("localhost:25565").unwrap();
c.write_packet(packet::handshake::serverbound::Handshake {
protocol_version: VarInt(71),
protocol_version: VarInt(SUPPORTED_PROTOCOL),
host: "localhost".to_owned(),
port: 25565,
next: VarInt(2),
})
.unwrap();
c.state = State::Login;
c.write_packet(packet::login::serverbound::LoginStart { username: "Think".to_owned() })
c.write_packet(packet::login::serverbound::LoginStart { username: "Thinkofdeath".to_owned() })
.unwrap();
let packet = match c.read_packet().unwrap() {
@ -985,8 +985,8 @@ pub fn test() {
let token_e = key.encrypt(&packet.verify_token.data);
let profile = mojang::Profile {
username: "Think".to_owned(),
id: "b1184d43168441cfa2128b9a3df3b6ab".to_owned(),
username: "Thinkofdeath".to_owned(),
id: "4566e69fc90748ee8d71d7ba5aa00d20".to_owned(),
access_token: "".to_owned(),
};

View File

@ -23,7 +23,7 @@ use std::io;
use std::fs;
use std::sync::mpsc;
const RESOURCES_VERSION: &'static str = "15w37a";
const RESOURCES_VERSION: &'static str = "15w39c";
pub trait Pack {
fn open(&self, name: &str) -> Option<Box<io::Read>>;