[svn 5703 and later] Abashed expanse wormhole bug with *fix*
Posted: Sun Oct 21, 2012 9:20 pm
Currently in the SVN, players cannot stabilize wormholes in the Abashed Expanse zone (archmage start quest).
In revision 5703 "damage_project" was changed to "da" here:
\game\modules\tome\data\damage_types.lua : Line 24
However, this property name wasn't updated here:
\game\modules\tome\data\zones\abashed-expanse\grids.lua : Line 29
Here's the specific broken line and the fix:
Bugged:
Fixed:
I'm pretty sure this issue is isolated to this one case because I didn't find any other instances of the text "damage_project" anywhere else in the code.
Edit: It's also possible that the "damage_project" -> "da" change was unintentional, and simply reverting that change would work too.
In revision 5703 "damage_project" was changed to "da" here:
\game\modules\tome\data\damage_types.lua : Line 24
However, this property name wasn't updated here:
\game\modules\tome\data\zones\abashed-expanse\grids.lua : Line 29
Here's the specific broken line and the fix:
Bugged:
Code: Select all
damage_project = function(self, src, x, y, type, dam)
Code: Select all
da = function(self, src, x, y, type, dam)
Edit: It's also possible that the "damage_project" -> "da" change was unintentional, and simply reverting that change would work too.