Fixed "Krenko Commander" and "Plane of the Apes" decks for AI, added a commandline trace to check which soundtrack file is currently playing.

This commit is contained in:
Vittorio Alfieri
2021-10-18 11:33:15 +02:00
parent 5bf5e1dfba
commit fcb073ccd6
4 changed files with 8 additions and 3 deletions

View File

@@ -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))

View File

@@ -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

View File

@@ -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!

View File

@@ -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;