Browse Source

Merge branch 'master' of https://github.com/buxx/OpenCombat

Bastien Sevajol 5 years ago
parent
commit
acd332200d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      opencombat/gui/base.py

+ 3 - 1
opencombat/gui/base.py View File

@@ -167,8 +167,10 @@ class TileLayerManager(LayerManager):
167 167
         self.ground_layer.set_view(
168 168
             0, 0, self.ground_layer.px_width, self.ground_layer.px_height,
169 169
         )
170
+        # TODO BS 2018-06-14: We have to move this layer to be correct.
171
+        # but some trees disapears ... wtf ?
170 172
         self.top_layer.set_view(
171
-            0, 0, self.top_layer.px_width, self.top_layer.px_height,
173
+            28, 28, self.top_layer.px_width, self.top_layer.px_height,
172 174
         )
173 175
 
174 176