removed stray console logging

This commit is contained in:
Stefan Zermatten
2021-01-12 13:24:08 +02:00
parent 0e663f36db
commit 5e4299e6db
2 changed files with 0 additions and 2 deletions

View File

@@ -16,7 +16,6 @@ export default function recomputeSlotFullness(ancestorId){
}).fetch();
let totalFilled = 0;
children.forEach(child => {
console.log(child);
if (child.type === 'slotFiller'){
totalFilled += child.slotQuantityFilled;
} else {

View File

@@ -151,7 +151,6 @@ export default {
});
},
change({path, value, ack}){
console.log({path, value})
if (path && path[0] === 'equipped'){
equipItem.call({_id: this._id, equipped: value}, (error) =>{
if (error) console.warn(error);