summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-04-08 14:08:50 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-04-08 14:08:50 +0200
commit54965220ebe8f0c1cecb6d1cfec856c979aaa92d (patch)
tree867d5d78313decbfaa2f913b0a2b3e4d54d12292 /test
parent0cd263af59f256da2d2f3a77be264d5e64c1ec5d (diff)
make global_coords ctor less implicit
Diffstat (limited to 'test')
-rw-r--r--test/serializer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/serializer.cpp b/test/serializer.cpp
index 02e6fdcc..75b0c13c 100644
--- a/test/serializer.cpp
+++ b/test/serializer.cpp
@@ -93,7 +93,7 @@ void test_serializer(StringView input, StringView tmp)
w = world::deserialize(input);
else
{
- coord = {1, 1};
+ coord = {1, 1, 0};
w = world();
make_test_chunk(w, coord);
}