Page 1 of 1

[1.2.3] escort mental save reward has no effect + fix

Posted: Thu Oct 02, 2014 11:31 pm
by kejlator
Bug in data/chats/escort-quest.lua - save id should be 'mental', not 'mind'.
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"}

Re: [1.2.3] escort mental save reward has no effect + fix

Posted: Fri Oct 03, 2014 7:34 am
by darkgod
Ahah nice one !
Thanks