Skip to content

Commit

Permalink
Fixing Offset implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
torrinworx committed Jan 3, 2023
1 parent 01ef08d commit ad9f8cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ def render_and_save_nfts(input):

for a in batch_dna_list:
full_single_dna = list(a.keys())[0]
order_num = a[full_single_dna]['order_num']
order_num_offset = input.order_num_offset
order_num = a[full_single_dna]['order_num'] + order_num_offset

# Material handling:
if input.enable_materials:
Expand Down

0 comments on commit ad9f8cd

Please sign in to comment.