From db7fabe0154cedfa0c6df3221d2b80f3e29182e1 Mon Sep 17 00:00:00 2001 From: tovjemam Date: Fri, 8 May 2026 19:48:08 +0200 Subject: [PATCH] Add avia to vehicle list --- src/game/openworld.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/openworld.cpp b/src/game/openworld.cpp index 70f7bbb..d674b52 100644 --- a/src/game/openworld.cpp +++ b/src/game/openworld.cpp @@ -18,7 +18,7 @@ namespace game static const char* GetRandomCarModel() { - const char* vehicles[] = {"pickup_hd", "passat", "twingo", "polskifiat", "cow_static", "pig_static"}; + const char* vehicles[] = {"pickup_hd", "passat", "twingo", "polskifiat", "cow_static", "pig_static", "avia"}; return vehicles[rand() % (sizeof(vehicles) / sizeof(vehicles[0]))]; }