Skip to content

Commit 0559598

Browse files
committed
Fixes
1 parent 7ffcb08 commit 0559598

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Server/mods/deathmatch/logic/luadefs/CLuaVehicleDefs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3065,7 +3065,7 @@ bool CLuaVehicleDefs::SetVehicleNitroActivated(CVehicle* vehicle, bool state) no
30653065
return true;
30663066
}
30673067

3068-
bool CLuaVehicleDefs::SetVehicleSmokeTrailEnabled(CVehicle* vehicle, bool state) noexcept
3068+
bool CLuaVehicleDefs::SetVehicleSmokeTrailEnabled(CVehicle* vehicle, bool state)
30693069
{
30703070
CBitStream BitStream;
30713071
BitStream.pBitStream->WriteBit(state);

Shared/sdk/net/rpc_enums.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,9 @@ enum eElementRPCFunctions
291291

292292
SET_VEHICLE_NITRO_ACTIVATED,
293293

294-
SET_VEHICLE_SMOKE_TRAIL_ENABLED,
295-
296294
SET_ELEMENT_ON_FIRE,
297295

296+
SET_VEHICLE_SMOKE_TRAIL_ENABLED,
297+
298298
NUM_RPC_FUNCS // Add above this line
299299
};

0 commit comments

Comments
 (0)