Version: 0.5.22b
OS: Windows 10
Error happens when casting the "Shackle" spell on an enemy preparing to flee. The text that appears is "[targetname1] being held in place! "
Note: On line 888 in combat.gd, in the useskills function there is a line self.combatlog += "[targetname1] being held in place! " However, this does not run the text through the combatantdictionary function, so it is being displayed as is. The line should be changed to text += "[targetname1] being held in place! " which is run through combatantdictionary later.