diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-23 15:33:38 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-23 15:34:12 +0100 |
commit | eb4922fc429764504a7e94e8c712c368c51685f2 (patch) | |
tree | dc2338c69f7811c46c8820846d62dca61271e7a7 /editor/update.cpp | |
parent | 62effff4a9bb2cddd515f6d6123c7ed141258ac1 (diff) |
scenery: add table
Diffstat (limited to 'editor/update.cpp')
-rw-r--r-- | editor/update.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/update.cpp b/editor/update.cpp index a253c3c4..9f347f0d 100644 --- a/editor/update.cpp +++ b/editor/update.cpp @@ -31,6 +31,7 @@ void app::maybe_initialize_chunk_(const chunk_coords& pos, chunk& c) c[{K, K+1}].wall_north() = { _wall1, 0 }; c[{K+1, K }].wall_west() = { _wall2, 0 }; c[{K+3, K+1}].scenery() = { scenery::door, rotation::N, _door, false }; + c[{ 3, 4 }].scenery() = { scenery::generic, rotation::N, _table }; c.mark_modified(); } |