Skip to content

Commit

Permalink
Fix Code
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Jan 12, 2013
1 parent 5f1fb56 commit 6f3127f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worldedit/manipulations.lua
Expand Up @@ -315,7 +315,7 @@ worldedit.fixlight = function(pos1, pos2)
pos.y = pos1.y
while pos.y <= pos2.y do
pos.z = pos1.z
while pos.z <= pos2.z do#
while pos.z <= pos2.z do
local node = env:get_node(pos)
if node.name == "air":
env:dig_node(pos)
Expand Down

0 comments on commit 6f3127f

Please sign in to comment.