From 473de216f24e0c5207e7e45037aff0c264d52afd Mon Sep 17 00:00:00 2001 From: tovjemam Date: Sat, 14 Mar 2026 18:59:57 +0100 Subject: [PATCH] Add cow_static to random vehicle model pool --- src/game/openworld.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/openworld.cpp b/src/game/openworld.cpp index 0800bfd..19628c6 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"}; + const char* vehicles[] = {"pickup_hd", "passat", "twingo", "polskifiat", "cow_static"}; return vehicles[rand() % (sizeof(vehicles) / sizeof(vehicles[0]))]; } @@ -52,7 +52,7 @@ game::OpenWorld::OpenWorld() : World("openworld") constexpr size_t in_row = 20; - for (size_t i = 0; i < 1500; ++i) + for (size_t i = 0; i < 100; ++i) { Schedule(i * 40, [this, i] { size_t col = i % in_row;