Skip to content

Commit

Permalink
Set terrain arg to SetTrue.
Browse files Browse the repository at this point in the history
This was erroneously set to `SetFalse`, which means it's impossible to
enable the terrain from the cli.
  • Loading branch information
benjamin051000 committed Feb 19, 2025
1 parent a969d65 commit 1d34425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub struct Args {
pub winter: bool,

/// Enable terrain (optional)
#[arg(long, default_value_t = false, action = clap::ArgAction::SetFalse)]
#[arg(long, default_value_t = false, action = clap::ArgAction::SetTrue)]
pub terrain: bool,

/// Enable debug mode (optional)
Expand Down

0 comments on commit 1d34425

Please sign in to comment.