Skip to content

Commit c340393

Browse files
committedJul 16, 2019
Fix luacheck warning
1 parent b701e50 commit c340393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎mods/dungeon_loot/mapgen.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ local function find_walls(cpos)
5353
end
5454

5555
local biome = minetest.get_biome_data(cpos)
56-
local biome = biome and minetest.get_biome_name(biome.biome) or ""
56+
biome = biome and minetest.get_biome_name(biome.biome) or ""
5757
local type = "normal"
5858
if biome:find("desert") == 1 then
5959
type = "desert"

0 commit comments

Comments
 (0)
Please sign in to comment.