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

A small typo in DamageType.GROW

parent 8f221706
No related branches found
No related tags found
1 merge request!99Typo fix
......@@ -2731,7 +2731,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