From 523a635dc88bc7890a0e1d3c062a8165259761d6 Mon Sep 17 00:00:00 2001 From: troido Date: Thu, 24 Sep 2020 09:38:18 +0200 Subject: don't try to read into the json data structure all manually --- content/encyclopediae/default_encyclopedia.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'content/encyclopediae/default_encyclopedia.json') diff --git a/content/encyclopediae/default_encyclopedia.json b/content/encyclopediae/default_encyclopedia.json index ca12897..8ea6bcc 100644 --- a/content/encyclopediae/default_encyclopedia.json +++ b/content/encyclopediae/default_encyclopedia.json @@ -49,7 +49,7 @@ "save": false }, "spawner": { - "arguments": [["template", "template"], ["amount", "int", 1], ["delay", "int", 0], ["clan", "string", ""], ["initial_spawn", "bool", true]], + "arguments": [["template", "template"], ["amount", "int", 1], ["delay", "int", 0], ["clan", "string", ""], ["initial_spawn", "bool", true], ["radius", "int", 0]], "components": [ ["Timer", { "delay": ["arg", "delay"], @@ -60,7 +60,8 @@ ["Spawner", { "template": ["arg", "template"], "amount": ["arg", "amount"], - "clan": ["arg", "clan"] + "clan": ["arg", "clan"], + "radius": ["arg", "radius"] }] ] }, -- cgit