[1.4.8] Tinker inconsistencies
Posted: Tue Nov 15, 2016 8:03 pm
I noticed a couple of bugs or inconsistencies if the tinker classes.
1/ I wanted to experiment in an antimagic saw butcher, until I noticed that healing salve do not trigger on_heal effects (which is rather disappointing for fungus). This is surprising, as the code indicates the contrary, but I double checked this behavior on an adventurer with aegis/shielding.
Code for healing salve:
2/ Steamsaws are not considered as dual wielded weapons for the windblade prodigy. Also surprising as they allow the use of dual techniques on an adventurer.
1/ I wanted to experiment in an antimagic saw butcher, until I noticed that healing salve do not trigger on_heal effects (which is rather disappointing for fungus). This is surprising, as the code indicates the contrary, but I double checked this behavior on an adventurer with aegis/shielding.
Code for healing salve:
Code: Select all
...
resolvers.medical_salves("heal %d", 15, function(self, who)
self:attr("allow_on_heal", 1)
who:heal(self:getCharmPower(who), who)
self:attr("allow_on_heal", -1)
...