This commit is contained in:
2025-12-12 13:48:49 +01:00
parent 6c583a6576
commit 8b005065fe
305 changed files with 294 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// CLEAR ALL SAVE FILES
console.log('🗑️ Clearing ALL save files...');
// Clear main save
localStorage.removeItem('novafarma_savefile');
// Clear all slots
for (let i = 1; i <= 3; i++) {
localStorage.removeItem(`novafarma_save_slot${i}`);
localStorage.removeItem(`novafarma_slot${i}_meta`);
}
// Clear other saves
localStorage.removeItem('novafarma_save');
localStorage.removeItem('novafarma_achievement_progress');
console.log('✅ All saves cleared! Reload page (F4) for fresh start.');
console.log('📝 Remaining keys:', Object.keys(localStorage).filter(k => k.includes('novafarma')));