remove dynamic equality

This commit is contained in:
2025-06-16 13:48:09 -05:00
parent 9c0565d34f
commit 794baf8598
70 changed files with 462 additions and 461 deletions

View File

@@ -2,7 +2,7 @@
log.console("Testing actor access to $_:");
// In an actor script, $_ should be available
if (typeof $_ !== 'undefined') {
if (typeof $_ != 'undefined') {
log.console("✓ Actor has access to $_");
log.console(" $_.random is a", typeof $_.random);
log.console(" $_.clock is a", typeof $_.clock);