Skip to content

Commit

Permalink
sup
Browse files Browse the repository at this point in the history
  • Loading branch information
suprohub committed Jan 6, 2025
1 parent 16729f3 commit 9f4cdc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pumpkin-config/src/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize)]
pub enum Generator {
Test,
Plains,
BeautifulPlains,
Superflat,
Void,
Custom,
Expand Down
3 changes: 1 addition & 2 deletions pumpkin-world/src/generation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ pub fn get_world_gen(seed: Seed) -> Box<dyn WorldGenerator> {
Generator::Test => {
Box::new(TestGenerator::<TestBiomeGenerator, TestTerrainGenerator>::new(seed))
}
Generator::Plains => Box::new(PlainsGenerator::new(seed)),
Generator::Void => todo!(),
Generator::BeautifulPlains => Box::new(PlainsGenerator::new(seed)),
_ => todo!(),
}
}
Expand Down

0 comments on commit 9f4cdc5

Please sign in to comment.