クリックバインドを取得するのではなく、JavaScriptがバインドを作成する代わりにバインドのアクションをすぐに実行しているかのように、コンソールメッセージのリストを取得します。
var biomes = new Array("glacier","desert","forest","grassland","hills","jungle","mountains","ocean","plains","swamp","tundra");
function changeTerrain(biome){
console.log(biome);
}
$(document).ready(function(){
// fill in terrain guide
$.each(biomes,function(x,biome){
$('div#terrainGuide').append("<div class='tile "+biome+"'></div>");
$('div#terrainGuide:last-child').bind({
click: changeTerrain(biome)
});
});
});