diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-27 17:27:56 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-27 17:27:56 +0100 |
commit | beb6685f605b89ce4b2dd99f87b9319e4f7f4d94 (patch) | |
tree | b4db6babfa2a7c5518db59e1678ef4e434ae0d70 /editor/update.cpp | |
parent | d2fcaad5425acb4a50138e793e3dcecc6600e4d3 (diff) |
more WIP
Diffstat (limited to 'editor/update.cpp')
-rw-r--r-- | editor/update.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/update.cpp b/editor/update.cpp index 0c347f1d..f2ac1bc6 100644 --- a/editor/update.cpp +++ b/editor/update.cpp @@ -30,9 +30,9 @@ void app::maybe_initialize_chunk_(const chunk_coords& pos, chunk& c) c[{K, K }].wall_west() = { _wall2, 0 }; 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::W, _table }; - c[{K, K+1}].scenery() = { scenery::generic, rotation::N, _control_panel, true }; + c[{K+3, K+1}].scenery() = { scenery::door, _door, rotation::N, }; + c[{ 3, 4 }].scenery() = { scenery::generic, _table, rotation::W, }; + c[{K, K+1}].scenery() = { scenery::generic, _control_panel, rotation::N, scenery::frame_t{0}, true }; c.mark_modified(); } |