From 6dc5194895b6bd61d19bf5c95021471784084325 Mon Sep 17 00:00:00 2001 From: untodesu Date: Tue, 1 Jul 2025 03:23:05 +0500 Subject: I forgot to set these to true in .clang-format https://files.catbox.moe/909rig.gif --- game/shared/world/chunk.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game/shared/world/chunk.cc') diff --git a/game/shared/world/chunk.cc b/game/shared/world/chunk.cc index 24a8d06..f689fc1 100644 --- a/game/shared/world/chunk.cc +++ b/game/shared/world/chunk.cc @@ -21,7 +21,8 @@ voxel_id world::Chunk::get_voxel(const std::size_t index) const { if(index >= CHUNK_VOLUME) { return NULL_VOXEL_ID; - } else { + } + else { return m_voxels[index]; } } -- cgit