Page 1 of 1

[svn 5703 and later] Abashed expanse wormhole bug with *fix*

Posted: Sun Oct 21, 2012 9:20 pm
by peaceoutside
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:

Code: Select all

damage_project = function(self, src, x, y, type, dam)
Fixed:

Code: Select all

da = function(self, src, x, y, type, dam)
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.

Re: [svn 5703 and later] Abashed expanse wormhole bug with *

Posted: Mon Oct 22, 2012 9:24 am
by darkgod
Indeed it was not; thanks