From bfce9487c57b3b6f7ba166f367c5c4b030412a02 Mon Sep 17 00:00:00 2001 From: eichhornchen Date: Fri, 6 Nov 2020 14:41:05 +0100 Subject: [PATCH] repaired the texture pack --- dungeonbattle/texturepack.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dungeonbattle/texturepack.py b/dungeonbattle/texturepack.py index 679f72e..3a4eb99 100644 --- a/dungeonbattle/texturepack.py +++ b/dungeonbattle/texturepack.py @@ -1,8 +1,8 @@ #This is the base ascii texturepack -textures = { - "EMPTY" : ' ' - "WALL" : '#' - "FLOOR" : '.' +ascii = { + "EMPTY" : ' ', + "WALL" : '#', + "FLOOR" : '.', "PLAYER" : '@' }