mojira.dev

Yolandi Briel

Assigned

No issues.

Reported

MC-87566 Delayed "SuccessCount:1" CommandBlock Update. Fixed MC-83329 Multiplayer: Client crashes after being shot with the levitation projectiles from the shulker mob. Duplicate

Comments

Great, it is fixed 🙂

Holding my fingers crossed.

It's a similar issue Frank. The only difference being you are using an impulse commandblock while I am using a repeating one.

My bug report on the other hand shows what seems to be causing this issue, being the SuccessCount not updating at the right time. By the looks of your report, it seems to be updating one block at a time through each pulse.

Since the SuccessCount is still 1, the conditional commandblock next to it will still work because the SuccessCount is what say whether the condition commandblock should run or not.

So by the looks of your report, the SuccessCount NBT of the commandblock before each of your conditional commandblocks looks like the following:

Test 1
[@] 1 SuccessCount:1
[@] 2 SuccessCount:1
[@] 3 SuccessCount:1
[@] 4 SuccessCount:1

Test 2
[@] 1 SuccessCount:0
[@] 2 SuccessCount:1
[@] 3 SuccessCount:1
[@] 4 SuccessCount:1

Test 3
[@] 1 SuccessCount:0
[@] 2 SuccessCount:0
[@] 3 SuccessCount:1
[@] 4 SuccessCount:1

Test 4
[@] 1 SuccessCount:0
[@] 2 SuccessCount:0
[@] 3 SuccessCount:0
[@] 4 SuccessCount:1

It worked in 15w35b for me, but broke in 15w35c, 15w35d and 15w35e

Confirmed on Windows 7 as well.