Skip to content

Commit

Permalink
Fix odd range typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyshannon committed Oct 9, 2021
1 parent 15d2e81 commit c1fc45b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mods/climate/temperature.lua
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ function climate.heat_transfer(pos, nodename, replace)

local pos_neighs = minetest.find_nodes_in_area(
{x = pos.x - 1, y = pos.y - 1, z = pos.z - 1},
{x = pos.x + 1, y = pos.y - 1, z = pos.z + 1},
{x = pos.x + 1, y = pos.y + 1, z = pos.z + 1},
{"group:heatable"})

if #pos_neighs > 0 then
Expand Down

0 comments on commit c1fc45b

Please sign in to comment.