From d5cad0e247ffffd4e985696809e46805177c6940 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sat, 31 Jan 2026 18:34:55 -0600 Subject: Bugfixes, infinite loading works --- src/world.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/world.c') diff --git a/src/world.c b/src/world.c index 4ce248b..8ae323e 100644 --- a/src/world.c +++ b/src/world.c @@ -5,7 +5,7 @@ #include // LOAD_DISTANCE determines how many chunks are loaded on world creation -#define LOAD_DISTANCE 10 +#define LOAD_DISTANCE 1 int world_init(int32_t seed, struct world** world) { srand(seed); -- cgit