Skip to content

Commit

Permalink
forgot to change this to a comma, oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Lilaa3 committed Sep 11, 2024
1 parent 37efd5b commit 4a1060a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fast64_internal/sm64/sm64_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -2164,7 +2164,7 @@ def actor_names(self) -> list:
def export_locations(self) -> str | None:
names = self.actor_names
if len(names) > 1:
return f"{{{'/'.join(names)}}}"
return f"{{{','.join(names)}}}"
elif len(names) == 1:
return names[0]
return None
Expand Down

0 comments on commit 4a1060a

Please # to comment.