Remove debug log

This commit is contained in:
James Lyne 2022-02-06 13:04:27 +00:00
parent b144b817af
commit 6d27068702

View File

@ -73,7 +73,6 @@ export default defineComponent({
//Filter out maps appended to other worlds //Filter out maps appended to other worlds
props.world.maps.forEach(map => { props.world.maps.forEach(map => {
console.log(map.appendedWorld, props.world);
if(!map.appendedWorld || map.appendedWorld.name === props.world.name) { if(!map.appendedWorld || map.appendedWorld.name === props.world.name) {
maps.push(map); maps.push(map);
} }