Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[m]ap invisible in fresh curses build #2333

Closed
OrenAudeles opened this issue Feb 9, 2023 · 2 comments · Fixed by #2416
Closed

[m]ap invisible in fresh curses build #2333

OrenAudeles opened this issue Feb 9, 2023 · 2 comments · Fixed by #2416
Labels

Comments

@OrenAudeles
Copy link
Collaborator

Describe the bug

In a fresh download, as of the latest experimental release, on entering a new game opening the map does not show the expected immediate area. Instead it shows the sidebar only. Does not show the cursor or any of the overmap characters.

Steps To Reproduce

  1. Download experimental release. Known to occur on this experimental release
  2. Start new game
  3. Open [m]ap
  4. ???
  5. Despair!

Screenshots

image_problem

Versions and configuration

  • OS: Linux
    • OS Version: Distributor ID: Ubuntu; Description: Ubuntu 20.04.5 LTS; Release: 20.04; Codename: focal;
  • Game Version: cda4bc7 [64-bit]
  • Graphics Version: Curses
  • Game Language: []
  • Mods loaded: [
    Bright Nights [bn],
    Disable NPC Needs [no_npc_food],
    Simplified Nutrition [novitamins],
    Elevated bridges [elevated_bridges]
    ]

Additional context

No response

@OrenAudeles OrenAudeles added the bug label Feb 9, 2023
@OrenAudeles
Copy link
Collaborator Author

The cause of this issue is a dependency on a TILES build only option USE_TILES_OVERMAP which defaults to "True" as of #2256
If the option is not present it defaults to True and does not care that we can't draw tiles in a Curses build.

Simple manual fix is to add this line as the last option in ./config/options.json
{ "info": "If true, replaces some TTF-rendered text with tiles for overmap display.", "default": "Default: True", "name": "USE_TILES_OVERMAP", "value": "false" }
if "USE_TILES_OVERMAP" option is not present. And if it is we can manually change that value from "true" to "false"

Once this is done it works as expected:
image_solution

@Wad67
Copy link
Contributor

Wad67 commented Feb 9, 2023

Here is the game report as requested

  • OS: Linux
    • OS Version: Distributor ID: Ubuntu; Description: Ubuntu 22.04.1 LTS; Release: 22.04; Codename: jammy;
  • Game Version: cda4bc7 [64-bit]
  • Graphics Version: Curses
  • Game Language: English [en_US]
  • Mods loaded: [
    Bright Nights [bn],
    Disable NPC Needs [no_npc_food],
    Simplified Nutrition [novitamins],
    Elevated bridges [elevated_bridges],
    No Lifting Reqs [disable_lifting],
    No Filthy Clothing [no_filthy_clothing],
    Prevent Zombie Revivication [no_reviving_zombies]
    ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants