Desktop Forums Blog Support Patreon
Official Steam Group | Patreon Chat
jack1974
...this one was well buried in the 500k lines of code* of Loren framework since September 2012, a simple mistake:
[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!!! :mrgreen:

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!