diff options
Diffstat (limited to 'src/World/ChunkRegistry.hpp')
| -rw-r--r-- | src/World/ChunkRegistry.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/World/ChunkRegistry.hpp b/src/World/ChunkRegistry.hpp index ea887e4..2b87a3a 100644 --- a/src/World/ChunkRegistry.hpp +++ b/src/World/ChunkRegistry.hpp @@ -34,7 +34,9 @@ public: } void damage() { - if (status == Status::Done) chunk.value().damage(); + // if (status == Status::Done) chunk.value().damage(); + // TODO: Properly damage the chunk, notifying the nearby chunks, too. + status = Status::NeedsReification; } }; |
