Browse Source

working on reducing rerenders

master
poikilos 9 years ago
committed by Jacob Gustafson
parent
commit
e41d6d013a
  1. 2
      chunkymap-regen.py

2
chunkymap-regen.py

@ -663,6 +663,7 @@ class MTChunks:
print("(moved to '"+dest_png_path+"')") print("(moved to '"+dest_png_path+"')")
self.prepare_chunk_meta(chunk_luid) # DOES load existing yml if exists self.prepare_chunk_meta(chunk_luid) # DOES load existing yml if exists
self.chunks[chunk_luid].is_fresh = True self.chunks[chunk_luid].is_fresh = True
self.chunks[chunk_luid].metadata["is_empty"] = False
except: except:
print ("Could not finish moving '"+tmp_png_path+"' to '"+dest_png_path+"'") print ("Could not finish moving '"+tmp_png_path+"' to '"+dest_png_path+"'")
try: try:
@ -885,6 +886,7 @@ class MTChunks:
self.rendered_count += 1 self.rendered_count += 1
if (self._render_chunk(x,z)): if (self._render_chunk(x,z)):
result = True result = True
else: else:
if self.is_chunk_rendered_on_dest(chunk_luid): if self.is_chunk_rendered_on_dest(chunk_luid):
result = True result = True

Loading…
Cancel
Save