Resolved - The Coke Can

CreepaShadowz

Maze Connoisseur
Mod
Apr 21, 2014
1,056
453
What is the map name? The Coke Can

What are the x y z coordinates /tp x y z
What world is the fault on. Zero

What fault has occured. Script/Cmd Block

Please give details of fault
As reported by @Hex
When cycling the code at the end if you get through every color the cycler shows stone and breaks and the final door can't be opened.
Issue appears to be an issue with the command block converter. Multiple execute commands separated by line feed characters [LF] were input into each block. Removing all the line feeds and execute commands will fix the issue.

Command blocks are at 2740 67 -5497<=z<=5487.

Code:
execute if block -2749 67 -5497 andesite[LF]execute if block -2749 67 -5497 diorite[LF]execute if block -2749 67 -5497 granite[LF]execute if block -2749 67 -5497 polished_andesite[LF]execute if block -2749 67 -5497 polished_diorite[LF]execute if block -2749 67 -5497 polished_granite[LF]execute if block -2749 67 -5497 stone
to
Code:
execute if block -2749 67 -5497 stone
 

rickyboy320

Penguin Master
Op
Board
Nov 18, 2013
1,926
1,032
Ah yes this is documented behaviour if a commandblock previously didn’t specify a datavalue. I did fix most of these on 1.12, but coke can came after that. Good find.
 
Top