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" : '@' }