Extend varp array to support cases where a server has >2500

This commit is contained in:
Pazaz 2022-04-27 11:35:48 -04:00
parent 1523a94221
commit aa72ec12d2
15 changed files with 28 additions and 29 deletions

View file

@ -98,7 +98,7 @@ public final class ScriptRunner {
}
if (opcode == 1) {
id = intOperands[pc];
intStack[isp++] = VarpDomain.varps[id];
intStack[isp++] = VarpDomain.activeVarps[id];
continue;
}
if (opcode == 2) {