File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1160,7 +1160,7 @@ const EasyCoder_Core = {
1160
1160
} ;
1161
1161
if ( target . imported ) {
1162
1162
const exporterRecord = EasyCoder . scripts [ target . exporter ] . getSymbolRecord ( target . exportedName ) ;
1163
- exporterRecord . value [ exporterRecord . index ] = value ;
1163
+ exporterRecord . value [ exporterRecord . index ] = target . value ;
1164
1164
}
1165
1165
return true ;
1166
1166
}
@@ -1206,7 +1206,7 @@ const EasyCoder_Core = {
1206
1206
run : program => {
1207
1207
const command = program [ program . pc ] ;
1208
1208
program . dataStack . push ( command . value ) ;
1209
- return true ;
1209
+ return command . pc + 1 ;
1210
1210
}
1211
1211
} ,
1212
1212
Original file line number Diff line number Diff line change @@ -1160,7 +1160,7 @@ const EasyCoder_Core = {
1160
1160
} ;
1161
1161
if ( target . imported ) {
1162
1162
const exporterRecord = EasyCoder . scripts [ target . exporter ] . getSymbolRecord ( target . exportedName ) ;
1163
- exporterRecord . value [ exporterRecord . index ] = value ;
1163
+ exporterRecord . value [ exporterRecord . index ] = target . value ;
1164
1164
}
1165
1165
return true ;
1166
1166
}
@@ -1206,7 +1206,7 @@ const EasyCoder_Core = {
1206
1206
run : program => {
1207
1207
const command = program [ program . pc ] ;
1208
1208
program . dataStack . push ( command . value ) ;
1209
- return true ;
1209
+ return command . pc + 1 ;
1210
1210
}
1211
1211
} ,
1212
1212
Original file line number Diff line number Diff line change @@ -952,7 +952,6 @@ DoRunStop:
952
952
set Running
953
953
wait 10 ticks
954
954
955
- dummy
956
955
run Script with RunPanel as TestModule nowait then
957
956
begin
958
957
clear Running
You can’t perform that action at this time.
0 commit comments