diff --git a/ui/core/player.ts b/ui/core/player.ts index 8e88669a4b..a82266652c 100644 --- a/ui/core/player.ts +++ b/ui/core/player.ts @@ -568,9 +568,6 @@ export class Player { } setCurrentStats(eventID: EventID, newStats: PlayerStats) { - newStats.finalStats?.stats.forEach((element, index) => { - console.log("Stat %d - %d", index, element) - }); this.currentStats = newStats; this.currentStatsEmitter.emit(eventID); } diff --git a/ui/core/proto_utils/equipped_item.ts b/ui/core/proto_utils/equipped_item.ts index a6f91d4fd5..041081b0b7 100644 --- a/ui/core/proto_utils/equipped_item.ts +++ b/ui/core/proto_utils/equipped_item.ts @@ -261,7 +261,6 @@ export class EquippedItem { withDynamicStats() { const item = this.item; - console.log("ASDF") const scalingOptions = item.scalingOptions[0]; item.stats = new Stats().asProtoArray().map((_, index) => scalingOptions.stats[index] || 0);