Skip to content

Commit

Permalink
ogfx1gui: Skip helipad sprite
Browse files Browse the repository at this point in the history
  • Loading branch information
ldpl committed Dec 29, 2023
1 parent 8cb1f5c commit 2cdee3a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion grf/ogfx1gui/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,10 @@ def replace_new_sprites(set_type, count, offset, first_id):
# replace_new_sprites(21, 137, 38, 2488+112+15+55+38+36+6)
# replace_new_sprites(21, 137, 38, 2750)
ofs, sprite = 38, 2750
# for x in [16] + [1] * 39 + [17, 4, 23, 1, 8, 1, 6, 9, 13]:
for x in [16] + [1] * 39 + [17, 4, 23, 1, 8, 1, 6, 9, 13]:
replace_new_sprites(21, x, ofs, sprite)
if sprite != 2831: # skip helipad
replace_new_sprites(21, x, ofs, sprite)
sprite += x + 1
ofs += x

Expand Down

0 comments on commit 2cdee3a

Please sign in to comment.