Skip to content
Snippets Groups Projects
Commit 0b86960f authored by Alex Ksandra's avatar Alex Ksandra
Browse files

A small typo in DamageType.GROW

parent 28b23f7a
No related branches found
No related tags found
1 merge request!100yay more typo fixes
......@@ -2735,7 +2735,7 @@ newDamageType{
if feat then
if feat.grow then
local newfeat_name, newfeat, silence = feat.grow, nil, false
if type(feat.dig) == "function" then newfeat_name, newfeat, silence = feat.grow(src, x, y, feat) end
if type(feat.grow) == "function" then newfeat_name, newfeat, silence = feat.grow(src, x, y, feat) end
newfeat = newfeat or game.zone.grid_list[newfeat_name]
if newfeat then
game.level.map(x, y, Map.TERRAIN, newfeat)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment