Skip to content

Commit

Permalink
grass_block.lua update to new api
Browse files Browse the repository at this point in the history
  • Loading branch information
MihailRis committed Jun 3, 2024
1 parent 15bb6d9 commit 7097136
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions res/content/base/scripts/grass_block.lua
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
function on_random_update(x, y, z)
local dirtid = block_index('base:dirt');
if is_solid_at(x, y+1, z) then
set_block(x, y, z, dirtid, 0)
local dirtid = block.index('base:dirt');
if block.is_solid_at(x, y+1, z) then
block.set(x, y, z, dirtid, 0)
else
local grassblockid = block_index('base:grass_block')
local grassblockid = block.index('base:grass_block')
for lx=-1,1 do
for ly=-1,1 do
for lz=-1,1 do
if get_block(x + lx, y + ly, z + lz) == dirtid then
if not is_solid_at(x + lx, y + ly + 1, z + lz) then
set_block(x + lx, y + ly, z + lz, grassblockid, 0)
if block.get(x + lx, y + ly, z + lz) == dirtid then
if not block.is_solid_at(x + lx, y + ly + 1, z + lz) then
block.set(x + lx, y + ly, z + lz, grassblockid, 0)
return
end
end
Expand Down

0 comments on commit 7097136

Please sign in to comment.