Skip to content

Commit

Permalink
Fix #2050 and fix #2053: gameinfo.txt not being modified during exports
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Jun 5, 2024
1 parent f238f94 commit 1739d33
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# Changelog

# Version (dev)
* #2050, #2053: Fix gameinfo.txt not being modified during exports.

------------------------------------------

# Version 4.45.1
* Fix the application looking in the wrong location for the compiler.

------------------------------------------

# Version 4.45.0

## New Features:
Expand Down
3 changes: 2 additions & 1 deletion src/exporting/gameinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import trio

import utils
from exporting import ExportData
from exporting import ExportData, STEPS


# The line we inject to add our BEE2 folder into the game search path.
Expand All @@ -22,6 +22,7 @@
from app.gameMan import Game


@STEPS.add_step(prereq=(), results=())
async def step_edit_gameinfo(exp: ExportData) -> None:
"""Modify gameinfo."""
await edit_gameinfos(exp.game, True)
Expand Down

0 comments on commit 1739d33

Please sign in to comment.