PlayerVisibility: bugfix, off by one :/
This commit is contained in:
parent
492a36ec5a
commit
daa588f03d
@ -173,7 +173,7 @@ public MRESReturn AcceptInput(int pThis, Handle hReturn, Handle hParams)
|
||||
sValue[i] = '\0';
|
||||
bFound = false;
|
||||
|
||||
if(iArgs > sizeof(aArgs))
|
||||
if(iArgs >= sizeof(aArgs))
|
||||
break;
|
||||
}
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user