Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Tools/genshin_merge_mods.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ def main():
while not key or len(key) != 1:
print("\nKey not recognized, must be a single letter\n")
key = input()
# If the user enters " " as the key, it would give errors in the render and pass the verification done earlier
if key.strip() == 0:
# set direction arrows to move between skins
key = "right\nback = left"
key = key.lower()

constants = "; Constants ---------------------------\n\n"
Expand Down