summaryrefslogtreecommitdiff
path: root/dungeon/src/map.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dungeon/src/map.rs')
-rw-r--r--dungeon/src/map.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/dungeon/src/map.rs b/dungeon/src/map.rs
index b6f3356..cb602e8 100644
--- a/dungeon/src/map.rs
+++ b/dungeon/src/map.rs
@@ -190,8 +190,8 @@ impl Floor {
impl Default for Floor {
/// Returns a floor with a single set of walls on the map border
fn default() -> Self {
+ const PLAYER_START: Pos = Pos::new_const::<1, 1>();
let mut tiles = Box::new([Tile::Air; TILE_COUNT]);
- let player_start = Pos::new_const::<1, 1>();
let seed = 0u64;
for pos in Pos::values() {
@@ -202,7 +202,7 @@ impl Default for Floor {
Self {
tiles,
- player_start,
+ player_start: PLAYER_START,
seed,
}
}