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.