My current patch job:
new Cmd('MetaIntro', {
script:function() {
if (typeof settings.intro === "string") {
msg(settings.intro)
}
else if (typeof settings.intro === "array") {
for (let el of settings.intro) msg(el)
}
else {
msg ("This story has no intro.", {}, 'parser')
}
return world.SUCCESS_NO_TURNSCRIPTS
},
})