...this one was well buried in the 500k lines of code* of Loren framework since September 2012, a simple mistake:
instead of:
was preventing all the "party member was hit by enemies" battlevoice sounds to be played!!!
Obviously a bug that can be easily ignored, but is fun how I discovered it today randomly while working on SOTW, and wondering why I wasn't hearing those voices. I'll fix Loren too even if is a minor thing!
* actually I didn't count the lines, but believe me are a LOT!
[code] if self.user.cIFF == "Friend":
PlayBattleVoice(pTarget.name,"hit")[/code]instead of:
[code] if pTarget.cIFF == "Friend":
PlayBattleVoice(pTarget.name,"hit")[/code]was preventing all the "party member was hit by enemies" battlevoice sounds to be played!!!
Obviously a bug that can be easily ignored, but is fun how I discovered it today randomly while working on SOTW, and wondering why I wasn't hearing those voices. I'll fix Loren too even if is a minor thing!
* actually I didn't count the lines, but believe me are a LOT!
