From a20bcfed7d3b6aacc3211514d9804651a458e725 Mon Sep 17 00:00:00 2001 From: troido Date: Sun, 27 Sep 2020 15:33:09 +0200 Subject: better serialisation structure for encyclopediae ["list", [1, 2, 3]] is now just [1, 2, 3] and {"type": builtwall", "kwargs": {"health": 50}} is now {":template": "builtwall", "health": 50} --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 6cd0f24..2176801 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,7 +45,7 @@ use self::{ playerid::PlayerId, roomid::RoomId, item::ItemId, - errors::{Result, PResult}, + errors::{Result}, sprite::Sprite, template::Template, encyclopedia::Encyclopedia, -- cgit