Create

Create

86M Downloads

Deployers break with cooldowns

Shadowdragon019 opened this issue ยท 0 comments

commented

Describe the Bug

Giving an item in a deployer a cooldown make it stop functioning, like the cooldown is never going down.

Reproduction Steps

  1. Give an item in a deployer a cooldown
  2. Watch it work once
  3. Watch it never work again

Expected Result

To continuously work

Screenshots and Videos

Example - https://youtu.be/EXi-_NTFQMg

Crash Report or Log

n/a

Operating System

Windows 10

Mod Version

0.5.0i

Minecraft Version

1.19.2

Forge Version

43.2.6

Other Mods

Lychee
Lazy DFU
CraftTweaker

Additional Context

Used lychee & ct to add the cooldown
The script I used:

<recipetype:lychee:block_interacting>.addJsonRecipe("minimal", {
    item_in: {
  	    item: "iron_pickaxe"
    },
    block_in: {
        blocks: [ "iron_ore" ]
    },
    post: [
        {
            type: "prevent_default"
        },{
            type: "drop_item",
            item: "create:crushed_iron_ore"
        }
    ]
});