You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
add newlines to generate_item_constants output
This commit is contained in:
@ -1110,7 +1110,7 @@ def generate_item_constants():
|
|||||||
for (id, item) in item_constants.items():
|
for (id, item) in item_constants.items():
|
||||||
val = ("$%.2x"%id).upper()
|
val = ("$%.2x"%id).upper()
|
||||||
while len(item)<13: item+= " "
|
while len(item)<13: item+= " "
|
||||||
output += item + " EQU " + val
|
output += item + " EQU " + val + "\n"
|
||||||
return output
|
return output
|
||||||
|
|
||||||
def find_all_text_pointers_in_script_engine_script(script, bank=None, debug=False):
|
def find_all_text_pointers_in_script_engine_script(script, bank=None, debug=False):
|
||||||
|
Reference in New Issue
Block a user