Im not sure if its something i have done but upon breaking any glass block with the code below i get the right glass block AND a white glasss block for some reason, any help would be greatly appreciated
Thankyou in advance.
PS. removing the white_glass_block code makes it function normally but i want the white_glass_block to drop when broken too, also normal glass blocks wont drop no matter what i try
on break of orange_glass_block:
cancel event
set block to air
drop 1 orange_glass_block
stop
on break of white_glass_block:
cancel event
set block to air
drop 1 white_glass_block
stop
on break of magenta_glass_block:
cancel event
set block to air
drop 1 magenta_glass_block
stop
on break of light_blue_glass_block:
cancel event
set block to air
drop 1 light_blue_glass_block
stop
on break of yellow_glass_block:
cancel event
set block to air
drop 1 yellow_glass_block
stop
on break of light_green_glass_block:
cancel event
set block to air
drop 1 light_green_glass_block
stop
on break of pink_glass_block:
cancel event
set block to air
drop 1 pink_glass_block
stop
on break of gray_glass_block:
cancel event
set block to air
drop 1 gray_glass_block
stop
on break of light_gray_glass_block:
cancel event
set block to air
drop 1 light_gray_glass_block
stop
on break of cyan_glass_block:
cancel event
set block to air
drop 1 cyan_glass_block
stop
on break of purple_glass_block:
cancel event
set block to air
drop 1 purple_glass_block
stop
on break of blue_glass_block:
cancel event
set block to air
drop 1 blue_glass_block
stop
on break of brown_glass_block:
cancel event
set block to air
drop 1 brown_glass_block
stop
on break of dark_green_glass_block:
cancel event
set block to air
drop 1 dark_green_glass_block
stop
on break of red_glass_block:
cancel event
set block to air
drop 1 red_glass_block
stop
on break of black_glass_block:
cancel event
set block to air
drop 1 black_glass_block
stop
Thankyou in advance.
PS. removing the white_glass_block code makes it function normally but i want the white_glass_block to drop when broken too, also normal glass blocks wont drop no matter what i try