This commit is contained in:
Anuken
2025-08-01 19:32:21 +02:00
parent 89ba79ca49
commit 4a43e963ca

View File

@@ -107,7 +107,7 @@ public class LVar{
if(isobj){
objval = other.objval;
}else{
numval = other.numval;
numval = invalid(other.numval) ? 0 : other.numval;
}
}