Remove old debug code

This commit is contained in:
roblabla 2014-04-11 01:48:42 +02:00
parent 0a4b365242
commit b7dd1ba04e

View File

@ -80,7 +80,6 @@ function joinServer(username, serverId, accessToken, selectedProfile, cb) {
function validateSession(username, serverId, cb) {
superagent.get("https://sessionserver.mojang.com/session/minecraft/hasJoined?username=" + username + "&serverId=" + serverId)
.end(function(resp) {
console.log(resp.body);
if (resp.ok) {
if ("id" in resp.body) {
cb(null, resp.body.id);