home · contact · privacy
Only send to client whether map starts indented, not whole offset.
[plomrogue2-experiments] / new / plomrogue / things.py
index 0e47cc0b6cd6df06fb4f83e6df8b5b856a232456..1e23809aec1af513056012fcc4925b0c5a6212cf 100644 (file)
@@ -279,7 +279,7 @@ class ThingAnimate(Thing):
 
     def get_visible_map(self):
         stencil = self.get_stencil()
-        m = Map(self.surroundings.size, ' ')
+        m = Map(self.surroundings.size, ' ', self.surroundings.start_indented)
         for pos in m:
             if stencil[pos] == '.':
                 m[pos] = self.surroundings[pos]