This commit is contained in:
2025-12-12 02:41:00 +01:00
parent e15b429e75
commit 84b07bb433
13 changed files with 1917 additions and 76 deletions

View File

@@ -81,14 +81,9 @@ class SaveSystem {
}
loadGame() {
console.log('📂 Loading game...');
let rawData = localStorage.getItem(this.storageKey);
if (!rawData) {
console.log('⚠️ No save file found.');
this.showNotification('NO SAVE FOUND');
return false;
}
console.log('📂 Loading game... DISABLED - Fresh start!');
// ONEMOGOČENO - vedno vrne false za fresh start
return false;
try {
let jsonString = rawData;