summaryrefslogtreecommitdiff
path: root/src/sim/cell_manager/manager.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sim/cell_manager/manager.rs')
-rw-r--r--src/sim/cell_manager/manager.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sim/cell_manager/manager.rs b/src/sim/cell_manager/manager.rs
index 6fa5f37..93b720d 100644
--- a/src/sim/cell_manager/manager.rs
+++ b/src/sim/cell_manager/manager.rs
@@ -66,7 +66,11 @@ impl CellManager {
for y in -10..1 {
for x in -100..100 {
- world.insert(x, y, Chunk::void());
+ if y == 0 {
+ world.insert(x, y, Chunk::floor());
+ } else {
+ world.insert(x, y, Chunk::void());
+ }
}
}