From e2c6dff247af6cc329a70befb1e7d7a959193ab1 Mon Sep 17 00:00:00 2001 From: dasbootdev Date: Wed, 16 Oct 2024 11:39:15 -0500 Subject: [PATCH] Updated client.lua in config to fix z-axis coordinate The z-axis coordinate was way off for normal map. Tested this on my dev server and works as expected. --- config/client.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/client.lua b/config/client.lua index 9f77ea8..c8e3520 100644 --- a/config/client.lua +++ b/config/client.lua @@ -6,7 +6,7 @@ return { mainEntrance = {coords = vec4(-598.4, -929.85, 24.0, 271.5)}, inside = {coords = vec4(-77.55, -833.75, 243.0, 67.5)}, outside = {coords = vec4(-598.25, -929.86, 23.86, 86.5)}, - vehicleStorage = {coords = vec4(-557.0, -925.25, 24.0, 270.0)}, + vehicleStorage = {coords = vec4(-557.0, -925.25, 24.0, 89)}, roofEntrance = {coords = vec4(-80.45, -832.7, 243.0, 72.0)}, roofExit = {coords = vec4(-568.5, -927.75, 37.0, 85.25)}, helicopterStorage = {coords = vec4(-583.08, -930.55, 36.83, 89.26)}