Skip to content

Commit

Permalink
Fix doors
Browse files Browse the repository at this point in the history
  • Loading branch information
ahallrq committed Jun 17, 2017
1 parent bdd3e4e commit 432700f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mc2mt.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ def extract_assets(asset_list_path, in_path, out_path):

tmp_tex = Image.new('RGBA', ((max_width*2)+single_door_border.size[0], total_height))
tmp_tex.paste(single_door_left,(0,0))
tmp_tex.paste(single_door_right,(max_width,0))
tmp_tex.paste(single_door_border,(max_width*2,0))
tmp_tex.paste(single_door_right,(max_width*2,0))
tmp_tex.paste(single_door_border,(max_width,0))
else:
if "crop" in texture_info and type(texture_info["crop"]) == list: # Improve this later
for img in image_list:
Expand Down

0 comments on commit 432700f

Please sign in to comment.