From b2157791dfcaab18ec7f8ebb958341fe325cf419 Mon Sep 17 00:00:00 2001 From: troido Date: Tue, 3 Mar 2020 13:36:44 +0100 Subject: added spawners an not-saved assemblages/templates --- src/worldloader.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/worldloader.rs') diff --git a/src/worldloader.rs b/src/worldloader.rs index afaabb7..d8a7c0f 100644 --- a/src/worldloader.rs +++ b/src/worldloader.rs @@ -25,7 +25,6 @@ impl WorldLoader { let mut path = self.directory.clone(); let fname = id.to_string() + ".json"; path.push(fname); - println!("PATH: {:?}", path); let text = fs::read_to_string(path)?; let json: Value = serde_json::from_str(&text)?; let template = RoomTemplate::from_json(&json)?; -- cgit