Hi,
maybe its too late for you, but I came across the same bug and so maybe will others.
Since this bug is quite old and was not fixed, here is my quick patch (all hail to open source!!)
WARNING: As Stuntofthelitter pointed out below, this fix might under certain circumstances cause your save game to be flagged as malicious. So only use this if you don't care so much about the online part of the game.
And here is how it is done:
1) Go to the modules folder. There should be a tome.team file. If you can not find it, simply search your whole system for this file.
2) Make a backup of this file in case something goes wrong
2) extract it. (its a normal zip file. If necessary rename it to tome.zip if you have troubles extracting it)
3) edit the data/talents/chronomancy/temporal-hounds.lua file (the one from the error report)
Change line 200 in this file from
Code: Select all
if e.summoner and e.summoner == self and e.name == "temporal hound" then
to
Code: Select all
if e ~= nil and e.summoner and e.summoner == self and e.name == "temporal hound" then
note that this is a tilde equals (~=), not a minus equals (-=).
4) Zip everything back together with lowest compression mode into a new tome.team file that replaces the old one. (Lowest compression mode is normally called "store" or "0" and does not really compress but instead glues the files together. You can check if you did it right by opening the zipped file in an simple editor. You should still be able to read the content of the files. If you only see jibberish, this was not the right compression mode.)
Now when you restart the game, you should be able to successfully dispell your hounds. Afterwards you could also replace it with the original tome.team file if you want to be safe. But I personally will keep it that way for now. Might get overwritten by the next update though, so if this bug apears again, check if your modification is still in place.
Greetings,
CySlider
PS: One downside: You will loose immortality, as it seems that the game crashes with this bug in place on death successfully preventing it from becoming reality *G*