diff --git a/routes/textures.js b/routes/textures.js index 2e9048c..885e43c 100644 --- a/routes/textures.js +++ b/routes/textures.js @@ -20,10 +20,14 @@ exports.init = function(app) { * Implementations */ function fetchSkin(request, response) { - response.send("Feature not yet supported."); + response.writeHead(307, { // Temporary Redirect + 'Location': 'http://mineshaftersquared.com/game/get_skin/' + request.params.username + }); } function fetchCloak(request, response) { - response.send("Feature not yet supported."); + response.writeHead(307, { + 'Location': 'http://mineshaftersquared.com/game/get_cloak/' + request.params.username + }); } -} \ No newline at end of file +}