diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/serializer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/serializer.cpp b/test/serializer.cpp index 05735beb..5b06baf1 100644 --- a/test/serializer.cpp +++ b/test/serializer.cpp @@ -43,7 +43,8 @@ chunk& test_app::make_test_chunk(world& w, chunk_coords_ ch) auto& p = *w.make_object<critter>(w.make_id(), global_coords{ch, {coord.x(), coord.y()}}, cproto); p.frame = (uint16_t)coord.x(); }; - add_player("Player 1", {13, 11}, true); + add_player("Player 1", {12, 11}, true); // duplicate + add_player("Player 1", {13, 11}, true); // duplicate add_player("Player 2", {14, 11}, false); add_player("Player 3", {15, 11}, true); |