From 2045a579074f743352c8bd2c5c4863c009fa2f07 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 10 Nov 2020 22:07:03 +0100 Subject: [PATCH] Don't add any additional space to unicode entities --- dungeonbattle/display/texturepack.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dungeonbattle/display/texturepack.py b/dungeonbattle/display/texturepack.py index fcd2435..adb1d49 100644 --- a/dungeonbattle/display/texturepack.py +++ b/dungeonbattle/display/texturepack.py @@ -43,6 +43,6 @@ TexturePack.SQUIRREL_PACK = TexturePack( EMPTY=' ', WALL='██', FLOOR='..', - PLAYER='🐿️ ', - HEDGEHOG='🦔 ', + PLAYER='🐿️', + HEDGEHOG='🦔', )