diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2023-09-07 09:05:18 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-09-07 09:05:18 +0200 |
| commit | 100f35c5129b28c12aa776b5664a9e29f1f551bf (patch) | |
| tree | fff276ba524144835edb48f4e58da5094b3cf15c /src/chunk.cpp | |
| parent | 259219f76c49e6dee0ea7fa0ca09731354fc847f (diff) | |
chunk: add hack to prevent character feet clipping
Diffstat (limited to 'src/chunk.cpp')
| -rw-r--r-- | src/chunk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chunk.cpp b/src/chunk.cpp index f8b823a8..52321aa1 100644 --- a/src/chunk.cpp +++ b/src/chunk.cpp @@ -91,7 +91,7 @@ void chunk::mark_modified() noexcept mark_passability_modified(); } -chunk::chunk(struct world& w) noexcept : _world{&w} +chunk::chunk(struct world& w, chunk_coords_ ch) noexcept : _world{&w}, _coord{ch} { } |
