From 6005756f9444ffac618aa7262c77f86f8ba1b79f Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Sat, 27 Mar 2021 21:56:55 +0000 Subject: [PATCH] Updated changelog, fmt --- CHANGELOG.md | 3 +++ client/src/lib.rs | 2 +- world/src/civ/mod.rs | 1 - 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e14c1295b..3d4f0ce25f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Reworked mindflayer to have unique attacks - Glowing remains are now `Armor` instead of `Ingredients`. +- Generated a net world map +- Overhauled clouds for more verticality and performance + ### Removed ### Fixed diff --git a/client/src/lib.rs b/client/src/lib.rs index c31faa99a1..2b6019d3a4 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -33,7 +33,7 @@ use common::{ grid::Grid, outcome::Outcome, recipe::RecipeBook, - resources::{PlayerEntity, DeltaTime, TimeOfDay}, + resources::{DeltaTime, PlayerEntity, TimeOfDay}, terrain::{block::Block, neighbors, BiomeKind, SitesKind, TerrainChunk, TerrainChunkSize}, trade::{PendingTrade, SitePrices, TradeAction, TradeId, TradeResult}, uid::{Uid, UidAllocator}, diff --git a/world/src/civ/mod.rs b/world/src/civ/mod.rs index 4ea20d87e0..84b5178a45 100644 --- a/world/src/civ/mod.rs +++ b/world/src/civ/mod.rs @@ -86,7 +86,6 @@ impl Civs { let initial_civ_count = initial_civ_count(sim.map_size_lg()); let mut ctx = GenCtx { sim, rng }; - // TODO: Care about world size when generating caves. for _ in 0..ctx.sim.get_size().product() / 10_000 { this.generate_cave(&mut ctx); }