From 54f5cf206239c8f00a1cd0a32ac34bb8abd5c75b Mon Sep 17 00:00:00 2001 From: Blue Date: Mon, 18 Sep 2023 21:56:16 +0200 Subject: [PATCH] server: add handlingnamehash to vehiclemodelinfo --- server/src/bindings/Main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/bindings/Main.cpp b/server/src/bindings/Main.cpp index c432d5e6..ef461d41 100644 --- a/server/src/bindings/Main.cpp +++ b/server/src/bindings/Main.cpp @@ -415,6 +415,7 @@ static void GetVehicleModelByHash(const v8::FunctionCallbackInfo& inf infoObj->Set(ctx, V8Helpers::JSValue("bones"), boneArr); infoObj->Set(ctx, V8Helpers::JSValue("canAttachCars"), V8Helpers::JSValue(modelInfo.canAttachCars)); + infoObj->Set(ctx, V8Helpers::JSValue("handlingNameHash"), V8Helpers::JSValue(modelInfo.handlingNameHash)); V8_RETURN(infoObj); }