mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2025-01-05 10:24:31 +01:00
Remove some log
This commit is contained in:
parent
41774eaa3d
commit
a5f6e54419
5 changed files with 0 additions and 11 deletions
|
@ -29,7 +29,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function select(val) {
|
function select(val) {
|
||||||
console.log('select', val);
|
|
||||||
selected = val;
|
selected = val;
|
||||||
focused = false;
|
focused = false;
|
||||||
hoveredIndex = -1;
|
hoveredIndex = -1;
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
let amount = 1;
|
let amount = 1;
|
||||||
|
|
||||||
function select(index, item) {
|
function select(index, item) {
|
||||||
console.log(index, item);
|
|
||||||
selected = index;
|
selected = index;
|
||||||
selectedItem = item;
|
selectedItem = item;
|
||||||
}
|
}
|
||||||
|
|
|
@ -187,8 +187,6 @@
|
||||||
const current = Math.max(currentAscension, 0);
|
const current = Math.max(currentAscension, 0);
|
||||||
const target = intendedAscension;
|
const target = intendedAscension;
|
||||||
|
|
||||||
console.log(selectedCharacter.ascension);
|
|
||||||
|
|
||||||
const result = selectedCharacter.ascension.slice(current, target).reduce(
|
const result = selectedCharacter.ascension.slice(current, target).reduce(
|
||||||
(sum, character, index) => {
|
(sum, character, index) => {
|
||||||
if (character.mora === 0) {
|
if (character.mora === 0) {
|
||||||
|
@ -225,8 +223,6 @@
|
||||||
|
|
||||||
moraNeeded = moraNeeded + result.mora;
|
moraNeeded = moraNeeded + result.mora;
|
||||||
ascensionResouce = result.items;
|
ascensionResouce = result.items;
|
||||||
|
|
||||||
console.log(ascensionResouce);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function calculateTalent() {
|
function calculateTalent() {
|
||||||
|
@ -267,8 +263,6 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
moraNeeded = moraNeeded + talentMaterial.mora;
|
moraNeeded = moraNeeded + talentMaterial.mora;
|
||||||
|
|
||||||
console.log(talentMaterial);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function calculate() {
|
function calculate() {
|
||||||
|
|
|
@ -133,8 +133,6 @@ import { addTodo } from '../stores/todo';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(allItems);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
parseData();
|
parseData();
|
||||||
|
|
|
@ -28,6 +28,5 @@ export const getCurrentDay = () => {
|
||||||
day = 6;
|
day = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(weekdays[day], weekdays[time.day()], time.format());
|
|
||||||
return weekdays[day];
|
return weekdays[day];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue