put back the ":" where it belongs

This commit is contained in:
eichhornchen 2020-11-06 17:09:39 +01:00
parent a6b93cacfb
commit 3502acd8d6
1 changed files with 2 additions and 2 deletions

View File

@ -11,9 +11,9 @@ class MapDisplay:
self.height = height self.height = height
self.map = m self.map = m
self.pad = curses.newpad(m.height, m.width+1) self.pad = curses.newpad(m.height, m.width+1)
if self.settings.TEXTURE_PACK == 'ASCII' if self.settings.TEXTURE_PACK == 'ASCII' :
self.textures = tp.ascii_textures self.textures = tp.ascii_textures
if self.settings.TEXTURE_PACK == 'SQUIRREL' if self.settings.TEXTURE_PACK == 'SQUIRREL' :
self.textures = tp.squirrel_textures self.textures = tp.squirrel_textures
def update_pad(self): def update_pad(self):