@polycode-projects/the-mechanical-code-talker 5.0.3 → 5.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -144,9 +144,9 @@ export async function createMudiiiSession(worldPayload, { agents = [], epoch = 0
144
144
 
145
145
  /** ONE whole-world step (`runTownSquareTick`) — every live agent moves,
146
146
  * the ecology pass runs, and the result names what happened this turn.
147
- * `k` is the caller's own global turn counter, mirroring mud-viz.mjs's
148
- * page-level serialization. */
149
- async function tick(k) {
147
+ * The engine counts the turns; the result's own `turn` is what a page
148
+ * displays. */
149
+ async function tick() {
150
150
  return runTownSquareTick(memoryDir, { layout });
151
151
  }
152
152