Modding Help plant not being removed after harvest?

Discussion in 'Starbound Modding' started by vernadead, Dec 15, 2013.

  1. vernadead

    vernadead Big Damn Hero

    as the title said, my custom plant is not being removed after harvest, and I'm able to harvest it infinitely.

    "interactionTransition" : {
    "3" : {
    "dropOptions" : [
    0.3,
    [
    {
    "name" : "plantfibre",
    "count" : 2
    },
    {
    "name" : "sativaclone",
    "count" : 2
    },
    {
    "name" : "sativabud",
    "count": 4
    }
    ],
    [
    {
    "name" : "sativabud",
    "count" : 4
    },
    {
    "name" : "plantfibre",
    "count" : 4
    }
    ],
    [
    {
    "name" : "sativaclone",
    "count" : 2
    },
    {
    "name" : "sativabud",
    "count" : 4
    }
    ]
    ]
    },
    "command" : "die"
    },
    "growing" : {
    "0" : {
    "duration" : [300, 420],
    "success" : 1,
    "failure" : 4
    },
    "1" : {
    "duration" : [300, 420],
    "success" : 2,
    "failure" : 4
    },
    "2" : {
    "duration" : [300, 420],
    "success" : 3,
    "failure" : 4
    }
    },
    "stageAlts" : {
    "count" : 5,
    "3" : 1
    }
    }
     
  2. tifel100

    tifel100 Void-Bound Voyager

    Oh that's my fault, your "command" : "die" was giving an error so I moved it :p
    Code:
    ]
    },
    "command" : "die"
    },
    
    Should be
    Code:
    ],
    "command" : "die"
    }
    },
    
     
  3. tifel100

    tifel100 Void-Bound Voyager

    Oh that's my fault, your "command" : "die" was giving an error so I moved it :p
    Code:
    ]
    },
    "command" : "die"
    },
    
    Should be
    Code:
    ],
    "command" : "die"
    }
    },
    
     
  4. vernadead

    vernadead Big Damn Hero

    Yeah I just fixed that :p Thanks.
     
  5. vernadead

    vernadead Big Damn Hero

    Although this seems to be happening.
    [​IMG]
    I can place two but only two plants together and the image is shifted to the right.
    I tried trimming the frames file where the width for 1 frame used to be 40 now 20, didnt seem to have too much of an effect


    Edit: fixed
     
    Last edited: Dec 15, 2013

Share This Page