diff options
author | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-11 10:44:04 +0100 |
---|---|---|
committer | Guillaume Pasquet <guillaume.pasquet@eggplant.io> | 2019-11-11 10:44:04 +0100 |
commit | 053b8b29b126af2a624bf8c66e6f0487aa07bd17 (patch) | |
tree | 2cdcea408a97b4ac5bb555734079da75cb8a4bb4 | |
parent | f7457e86061d59866599662f8ae12d9d7094e5c4 (diff) |
Remove problematic empty loop
-rw-r--r-- | src/world.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/world.rs b/src/world.rs index d43dc0b..60ca096 100644 --- a/src/world.rs +++ b/src/world.rs @@ -276,10 +276,6 @@ impl GameWorld for World { let distances = self.room_distances(room.center);
let nearest_room = &self.world[distances[1].0];
let mut corridor_start: (usize, usize);
-
- for edge in room.edges {
-
- }
}
grid
|