From e59a032fb9afac6496acf3fba51a2a329bd0f992 Mon Sep 17 00:00:00 2001 From: aura Date: Mon, 16 Mar 2026 13:35:33 +0100 Subject: more editor work --- src/game/world/map.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/game/world/map.cpp') diff --git a/src/game/world/map.cpp b/src/game/world/map.cpp index 5f1f5d7..7b8060b 100644 --- a/src/game/world/map.cpp +++ b/src/game/world/map.cpp @@ -380,24 +380,24 @@ void map_gen_skybox( WORLD_MAP* m ) { VEC3 maxs = m->maxs + VEC3( SKYBOX_OFFSET, SKYBOX_OFFSET, SKYBOX_OFFSET ); m->skybox.walls[0] = { + .propid = MAPPROP_SKYBOX, .start = { mins.x, mins.y, mins.z }, .end = { maxs.x, mins.y, maxs.z - mins.z }, - .propid = MAPPROP_SKYBOX }; m->skybox.walls[1] = { + .propid = MAPPROP_SKYBOX, .start = { maxs.x, mins.y, mins.z }, .end = { maxs.x, maxs.y, maxs.z - mins.z }, - .propid = MAPPROP_SKYBOX }; m->skybox.walls[2] = { + .propid = MAPPROP_SKYBOX, .start = { maxs.x, maxs.y, mins.z }, .end = { mins.x, maxs.y, maxs.z - mins.z }, - .propid = MAPPROP_SKYBOX }; m->skybox.walls[3] = { + .propid = MAPPROP_SKYBOX, .start = { mins.x, maxs.y, mins.z }, .end = { mins.x, mins.y, maxs.z - mins.z }, - .propid = MAPPROP_SKYBOX }; VEC2 floor[] = { -- cgit v1.2.3