fix: Clang doesn't like this for some reason (#14)

Honestly no clue why it doesn't like it but this fixes it

Reviewed-on: https://git.neolegacy.dev/neoStudiosLCE/neoLegacy/pulls/14
Reviewed-by: neo <neo@obsidianos.xyz>
Co-authored-by: Trevor Watkins <tawatkins1110@gmail.com>
Co-committed-by: Trevor Watkins <tawatkins1110@gmail.com>
This commit is contained in:
Trevor Watkins
2026-06-24 20:49:09 +01:00
committed by neo
parent 4bc7ee5a36
commit 5bbd488a46
+2 -1
View File
@@ -4323,7 +4323,8 @@ void ClientConnection::handleSetPlayerTeamPacket(shared_ptr<SetPlayerTeamPacket>
void ClientConnection::handleParticleEvent(shared_ptr<LevelParticlesPacket> packet)
{
ePARTICLE_TYPE particleId = (ePARTICLE_TYPE)Integer::parseInt(packet->getName());
wstring particleName = packet->getName();
ePARTICLE_TYPE particleId = (ePARTICLE_TYPE)Integer::parseInt(particleName);
for (int i = 0; i < packet->getCount(); i++)
{