Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion keymasters_keep/backloggery_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from __future__ import annotations
from dataclasses import dataclass
import enum
import pathlib
from typing import Any, TypedDict

LIBRARY_DEFAULT_PATH: str = "keymasters_keep/backloggery/library_<date>.csv"
Expand Down Expand Up @@ -70,6 +71,7 @@ class BackloggeryDemoData(Options.Toggle):
"""

display_name: str = "Backloggery Demo Data"
default = not pathlib.Path(LIBRARY_DEFAULT_PATH).exists()

except ImportError: # Main mode, define dummy classes

Expand Down Expand Up @@ -634,7 +636,7 @@ def _reviews(self) -> list[BackloggeryReview]:
Rating='4.5',
Difficulty='Relaxing',
Review="""
Super fun farming game. I've not played a Harvest Moon yet so I don't have much to compare it too. Only complaint is it starts to feel a bit too repetitive and aimless after year 2, but I'm not sure how they could fix that.
Super fun farming game. I've not played a Harvest Moon yet so I don't have much to compare it too. Only complaint is it starts to feel a bit too repetitive and aimless after year 2, but I'm not sure how they could fix that.

Highly recommended.
""".strip(),
Expand Down