Skip to content

Commit

Permalink
Fixed launcher scripts wrong game config argument
Browse files Browse the repository at this point in the history
  • Loading branch information
luskaner committed Nov 3, 2024
1 parent 0204c02 commit 64f94a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion launcher/resources/unix/launcher_aoe2.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh

cd "$(dirname "$0")"
./launcher -e age2 -c resources/config.aoe2.toml
./launcher -e age2 --gameConfig resources/config.aoe2.toml
read -p "Press any key to exit..."
2 changes: 1 addition & 1 deletion launcher/resources/unix/launcher_aoe3.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh

cd "$(dirname "$0")"
./launcher -e age3 -c resources/config.aoe3.toml
./launcher -e age3 --gameConfig resources/config.aoe3.toml
read -p "Press any key to exit..."
2 changes: 1 addition & 1 deletion launcher/resources/windows/launcher_aoe2.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off
cd /d "%~dp0"
launcher -e age2 -c resources/config.aoe2.toml
launcher -e age2 --gameConfig resources/config.aoe2.toml
pause
2 changes: 1 addition & 1 deletion launcher/resources/windows/launcher_aoe3.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off
cd /d "%~dp0"
launcher -e age3 -c resources/config.aoe3.toml
launcher -e age3 --gameConfig resources/config.aoe3.toml
pause

0 comments on commit 64f94a7

Please sign in to comment.