From bef07b6353c049d71cc03c461a08fde45a8dce0b Mon Sep 17 00:00:00 2001 From: Nikolay Korolev Date: Mon, 12 Jul 2021 10:31:48 +0300 Subject: [PATCH] small changes --- src/vehicles/Ferry.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/vehicles/Ferry.cpp b/src/vehicles/Ferry.cpp index 32a8ac4f..1ae1fb6c 100644 --- a/src/vehicles/Ferry.cpp +++ b/src/vehicles/Ferry.cpp @@ -201,6 +201,11 @@ void CFerry::Init(void* pInstancePtr) void CFerry::InitFerrys(void) { + printf("init ferrys\n"); +#ifdef GTA_NETWORK + if (gIsMultiplayerGame) + SetupForMultiplayer(); +#endif if (!mspInst) Init(nil); for (int i = 0; i < NUM_FERRIES; i++) @@ -348,6 +353,10 @@ void CFerry::Render(void) void CFerry::RenderAllRemaning(void) { +#ifdef GTA_NETWORK + if (gIsMultiplayerGame) + return; +#endif for (int i = 0; i < NUM_FERRIES; i++) { CFerry* pFerry = GetFerry(i); if (pFerry) { @@ -802,6 +811,7 @@ void CFerry::SetupForMultiplayer(void) { for (int i = 0; i < NUM_FERRIES; i++) mspInst->m_apFerries[i] = nil; + printf("setting up the ferrys for multiplayer\n"); CStreaming::SetModelIsDeletable(MI_FERRY); }