D'oh!  Leaving this for posterity:   There's a couple places where I did things like `var SPAWN = Game.spawns['Spawn1'];`. This only get's ran or updated infrequently (maybe when you push new code?).  NOT every tick.   So all my calls were going toward this "stale" version of the object.   Moved those things into an `init()` function, and it works!