From d93d015206cbf6efebce7967e14d23a96ebe2fc6 Mon Sep 17 00:00:00 2001 From: klangner Date: Thu, 3 Sep 2020 22:03:59 +0200 Subject: [PATCH] Version 0.1.2 --- Cargo.toml | 2 +- src/dungeon/cull_unreachable.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1bf1762..da69c63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mapgen" -version = "0.1.1" +version = "0.1.2" authors = ["Krzysztof Langner "] description = "Map generator for games (dungeons, worlds etc.)" keywords = ["game", "map", "map-generator"] diff --git a/src/dungeon/cull_unreachable.rs b/src/dungeon/cull_unreachable.rs index 0632315..6f68a51 100644 --- a/src/dungeon/cull_unreachable.rs +++ b/src/dungeon/cull_unreachable.rs @@ -1,6 +1,6 @@ //! Remove unreachable areas from the map. //! -//! This modifier reuires starting position on the map. +//! This modifier reiquires starting position on the map. //! It will add wall on every tile which is not accessible from the starting point. //!