From c51585be254795be90626dbc376663b1be8b5bf5 Mon Sep 17 00:00:00 2001 From: troido Date: Tue, 3 Mar 2020 14:55:45 +0100 Subject: dummies respawn too; fixed problems with respawn delay --- src/defaultencyclopedia.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/defaultencyclopedia.rs') diff --git a/src/defaultencyclopedia.rs b/src/defaultencyclopedia.rs index b6ab6cc..5e9222e 100644 --- a/src/defaultencyclopedia.rs +++ b/src/defaultencyclopedia.rs @@ -164,13 +164,14 @@ pub fn default_encyclopedia() -> Encyclopedia { ] }, "spawner": { - "arguments": [["template", "template", null], ["amount", "int", 1], ["delay", "int", 0], ["clan", "string", ""]], + "arguments": [["template", "template", null], ["amount", "int", 1], ["delay", "int", 0], ["clan", "string", ""], ["initial_spawn", "bool", true]], "components": [ ["Spawner", { "template": ["arg", "template"], "amount": ["arg", "amount"], "delay": ["arg", "delay"], - "clan": ["arg", "clan"] + "clan": ["arg", "clan"], + "initial_spawn": ["arg", "initial_spawn"] }] ] } -- cgit