From 419a2c886c476b121606c319331ed3a6d54aa848 Mon Sep 17 00:00:00 2001 From: troido Date: Wed, 18 Sep 2019 14:07:08 +0200 Subject: adapted to changed ratuil api and removed healthfull and healthempty in charmaps --- asciifarm/client/loaders.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'asciifarm/client/loaders.py') diff --git a/asciifarm/client/loaders.py b/asciifarm/client/loaders.py index d3d7ed1..9e32277 100644 --- a/asciifarm/client/loaders.py +++ b/asciifarm/client/loaders.py @@ -61,8 +61,6 @@ def loadCharmap(name): writable = {} default = None charwidth = 1 - healthfull = None - healthempty = None alphabet = "" msgcolours = {} @@ -71,8 +69,6 @@ def loadCharmap(name): writable.update(template.get("writable", {})) default = template.get("default", default) charwidth = template.get("charwidth", charwidth) - healthfull = template.get("healthfull", healthfull) - healthempty = template.get("healthempty", healthempty) alphabet = template.get("alphabet", alphabet) msgcolours.update(template.get("msgcolours", {})) return { @@ -80,8 +76,6 @@ def loadCharmap(name): "writable": writable, "default": default, "charwidth": charwidth, - "healthfull": healthfull, - "healthempty": healthempty, "alphabet": alphabet, "msgcolours": msgcolours } -- cgit