🐐 VSQVE change

This commit is contained in:
2026-04-21 22:35:22 +02:00
parent 5961884219
commit 559b1b100e
9 changed files with 62 additions and 47 deletions

View File

@@ -280,7 +280,7 @@ class DataRangeArray(Node):
raise CentvrionError("Range bounds must be numbers")
from_int = from_val.value() or 0
to_int = to_val.value() or 0
return vtable, ValList([ValInt(i) for i in range(from_int, to_int)])
return vtable, ValList([ValInt(i) for i in range(from_int, to_int + 1)])
class DataDict(Node):