From 4b32d6d8f08cc53bfb2144707f017e9687f9d4e9 Mon Sep 17 00:00:00 2001 From: noncomputable Date: Thu, 2 Aug 2018 00:36:37 -0400 Subject: [PATCH] removed extraneous arg --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2764f3c..07ac3ca 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ which just assigns a number to each agent it generates in sequence, counting up in the center of the unit whose ID is the corresponding number. We'll make 50: ```javascript -agentmap.agentify(50, agentmap.seqUnitAgentMaker, {radius: .5, color: "red", fillColor: "red"}); +agentmap.agentify(50, agentmap.seqUnitAgentMaker); ``` The Agentmap simulation will start once we call `agentmap.run()`. From then on, its operation is divided up into consecutive "ticks".