Fixed index out of bounds error in volumetric features.
This commit is contained in:
parent
bb2cf9483a
commit
26e5809423
@ -281,7 +281,7 @@ VolResetCountDown(client = -1)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Reset all volume counters.
|
// Reset all volume counters.
|
||||||
for (new clientIndex = 0; clientIndex <= MAXPLAYERS + 1; clientIndex++)
|
for (new clientIndex = 0; clientIndex < MAXPLAYERS + 1; clientIndex++)
|
||||||
{
|
{
|
||||||
for (new volumeIndex = 0; volumeIndex < ZR_VOLUMES_MAX; volumeIndex++)
|
for (new volumeIndex = 0; volumeIndex < ZR_VOLUMES_MAX; volumeIndex++)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user