diff --git a/CHANGELOG.md b/CHANGELOG.md index 84af47193..a4db23fce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,11 @@ ## [master] (https://github.com/WagicProject/wagic/tree/master) +### 18/10/21 +- *Committed:* Fixed "Krenko Commander" and "Plane of the Apes" decks for AI, added a commandline trace to check which soundtrack file is currently playing. ([Vitty85](https://github.com/Vitty85)) + ### 17/10/21 -- *Committed:* Added a new deck named "Krenko Commander" for AI (credits to Bob). ([Vitty85](https://github.com/Vitty85)) +- *Committed:* Added a new deck named "Krenko Commander" for AI (credits to Bob). https://github.com/WagicProject/wagic/commit/5bf5e1dfbae0208a10d93c754aef20f5d06b2148 ([Vitty85](https://github.com/Vitty85)) ### 15/10/21 - *Committed:* Fixed "Cursed Mirror". https://github.com/WagicProject/wagic/commit/6d1e16441ed71e9cfc9319b5607e503e13d60e51 ([Vitty85](https://github.com/Vitty85)) diff --git a/projects/mtg/bin/Res/ai/baka/deck153.txt b/projects/mtg/bin/Res/ai/baka/deck153.txt index 0b78171ac..1271fc2d9 100644 --- a/projects/mtg/bin/Res/ai/baka/deck153.txt +++ b/projects/mtg/bin/Res/ai/baka/deck153.txt @@ -9,6 +9,7 @@ Battle Cry Goblin (*) * 1 Blasphemous Act (*) * 1 Blood Moon (*) * 1 Bloodmark Mentor (SHM) (*) * 1 +Boggart Shenanigans (*) * 1 Chancellor of the Forge (*) * 1 Coat of Arms (*) * 1 Dragon Fodder (ALA) (*) * 1 @@ -40,7 +41,6 @@ Goblin Wizard (*) * 1 Homeward Path (*) * 1 Horde of Boggarts (*) * 1 Hordeling Outburst (*) * 1 -Illusionist's Bracers (*) * 1 Impact Tremors (*) * 1 Intimidator Initiate (*) * 1 Krenko's Enforcer (*) * 1 diff --git a/projects/mtg/bin/Res/ai/baka/deck67.txt b/projects/mtg/bin/Res/ai/baka/deck67.txt index c56cb8ee3..8d38694a7 100644 --- a/projects/mtg/bin/Res/ai/baka/deck67.txt +++ b/projects/mtg/bin/Res/ai/baka/deck67.txt @@ -1,4 +1,4 @@ -#NAME:Plane ofthe Apes +#NAME:Plane of the Apes #DESC:A plane where apes #DESC:evolved from men? #DESC:There's got to be an answer! diff --git a/projects/mtg/src/GameApp.cpp b/projects/mtg/src/GameApp.cpp index d3dbf0ef0..d029ef4a4 100644 --- a/projects/mtg/src/GameApp.cpp +++ b/projects/mtg/src/GameApp.cpp @@ -554,6 +554,8 @@ void GameApp::playMusic(string filename, bool loop) { if(filename == "") filename = currentMusicFile; + JGE::GetInstance()->SendCommand("\nSelected soundtrack is: " + filename + "\n"); + if (filename.compare(currentMusicFile) == 0 && music) return;