From e46dd0f45d1cab35c7441d72f5dcac83720cc539 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 25 Nov 2022 19:37:06 +0100 Subject: add scenery horizontal mirroring --- editor/update.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/update.cpp') diff --git a/editor/update.cpp b/editor/update.cpp index 9e479050..0c347f1d 100644 --- a/editor/update.cpp +++ b/editor/update.cpp @@ -31,7 +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[{ 3, 4 }].scenery() = { scenery::generic, rotation::W, _table }; c[{K, K+1}].scenery() = { scenery::generic, rotation::N, _control_panel, true }; c.mark_modified(); } -- cgit v1.2.3