Removed unnescessary data from chunk file names

This commit is contained in:
Sasha Koshka
2022-05-02 10:57:21 -04:00
parent b61fcbd3cc
commit dae779ab53

View File

@@ -107,7 +107,7 @@ u_int32_t chunkHash (int x, int y, int z) {
static void chunkFilePath (World *world, char *path, int x, int y, int z) {
snprintf (
path, PATH_MAX,
"%s/%08x-%08x-%08x.ch",
"%s/%08X%08X%08X",
world->path,
x >> 6, y >> 6, z >> 6);
}