feat: UI Overhaul

This commit is contained in:
2025-12-09 23:49:52 +00:00
parent 68271579bf
commit 07ae21973e
21 changed files with 4546 additions and 86 deletions

View File

@@ -56,6 +56,8 @@ console.log("%c Magic Garden Bot Starting... ", "background: #222; color: #bada5
if (tile && tile.slots) {
tile.slots.forEach((s, idx) => {
if (now >= s.endTime) {
const mutations = s.mutations || [];
// Smart Harvest Logic
if (MB.automation.smartHarvest) {
// 0. Safety: Check for Planted Eggs
@@ -67,7 +69,6 @@ console.log("%c Magic Garden Bot Starting... ", "background: #222; color: #bada5
return;
}
const mutations = s.mutations || [];
const isRainbow = mutations.includes('Rainbow');
const isGold = mutations.includes('Gold');
const isFrozen = mutations.includes('Frozen');