git.fiddlerwoaroof.com
Browse code

re-enabled Fog of War

Ed L authored on 26/07/2012 19:31:44
Showing 1 changed files
... ...
@@ -86,8 +86,8 @@ class Level(object):
86 86
 				cell.explored = True
87 87
 
88 88
 			color = libtcod.black
89
-			if True:
90
-			#if cell.explored:
89
+			#if True:
90
+			if cell.explored:
91 91
 				wall = cell.block_sight
92 92
 				walkable = not cell.blocked
93 93