[1.2.3] escort mental save reward has no effect + fix
Posted: Thu Oct 02, 2014 11:31 pm
Bug in data/chats/escort-quest.lua - save id should be 'mental', not 'mind'.
Fix:
Fix:
Code: Select all
55c55
< saves = { mind = 4 },
---
> saves = { mental = 4 },
156c156
< saves = { spell = 4, mind = 4 },
---
> saves = { spell = 4, mental = 4 },
217,218c217,218
< local saves_name = { mind="mental", spell="spell", phys="physical"}
< local saves_tooltips = { mind="MENTAL", spell="SPELL", phys="PHYS"}
---
> local saves_name = { mental="mental", spell="spell", phys="physical"}
> local saves_tooltips = { mental="MENTAL", spell="SPELL", phys="PHYS"}