Fix lua packet's index always being 0 (#405)

This commit is contained in:
Emerald Lockdown 2023-06-11 16:35:41 -05:00 committed by GitHub
parent 299c5f0886
commit 2fc3d7fee9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ void network_send_lua_custom(bool broadcast) {
// get local index
s32 toLocalIndex = 0;
if (!broadcast) {
s32 toLocalIndex = smlua_to_integer(L, paramIndex++);
toLocalIndex = smlua_to_integer(L, paramIndex++);
if (toLocalIndex <= 0 || toLocalIndex >= MAX_PLAYERS) {
LOG_LUA_LINE("Tried to send packet to invalid local index: %d", toLocalIndex)
return;