From 984f07a24d3d377c13358fc5533c0eda383858f5 Mon Sep 17 00:00:00 2001 From: sanine Date: Fri, 10 Nov 2023 19:51:02 -0600 Subject: refactor: actions take an additional world parameter --- src/world/agent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/world/agent.js') diff --git a/src/world/agent.js b/src/world/agent.js index 576ebc4..3faa3c8 100644 --- a/src/world/agent.js +++ b/src/world/agent.js @@ -15,7 +15,7 @@ export function agent_decide(world, agent, senses, actions) { const tail = result.slice(action.size); const props = action - .propose(new_agent, head) + .propose(world, new_agent, head) .reduce( (acc, proposal) => proposal_merge(acc, proposal), proposals -- cgit v1.2.1