Skip to content

Commit c44795c

Browse files
committed
Remove debugging warnings
1 parent eed037a commit c44795c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

module/documents/actor.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,12 +273,10 @@ export class BasicFantasyRPGActor extends Actor {
273273
"label": 'BASICFANTASYRPG.Height'
274274
};
275275

276-
console.warn('totalCost: ' + totalCost);
277276
data.cost = {
278277
"value": (totalCost + (totalCost * (totalHeight / 100))) * data.costMultiplier.value, // each 10' of height adds 10% to the costs in both time and money
279278
"label": 'BASICFANTASYRPG.Cost'
280279
};
281-
console.warn('data.cost.value: ' + data.cost.value);
282280

283281
data.buildTime = {
284282
"value": Math.ceil(Math.max(data.cost.value / data.workers.value, Math.sqrt(data.cost.value))),

0 commit comments

Comments
 (0)