Files
cell/tests/portalspawner.js
John Alanbrook 291fd9ead0
Some checks failed
Build and Deploy / package-dist (push) Blocked by required conditions
Build and Deploy / deploy-itch (push) Blocked by required conditions
Build and Deploy / deploy-gitea (push) Blocked by required conditions
Build and Deploy / build-linux (push) Successful in 1m16s
Build and Deploy / build-windows (CLANG64) (push) Failing after 10m57s
hide actor data
2025-03-12 23:09:43 -05:00

15 lines
328 B
JavaScript

// Creates a portal and a separate actor to contact
var os = use('os')
var children = []
$_.start(e => {
console.log('Portal actor finished starting.')
children.push(e.actor)
$_.start(e => {
children.push(e.actor)
console.log('Contact actor finished starting.')
}, "tests/contact.js")
}, "tests/portal.js")