• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Stacking Dyes

nightshade

New member
Is there a way to stack dyes? Its a pain that they clutter up my inventory due to me needing them with the writing desk mod. 

 
You can, in the item_modifiers xml
Look for dyes and change the stack number to your desired amount.

Do note: putting a stack of dyes into a mod slot will remove all but one of the dyes in that stack.

 
if you put in a stack of 10 dyes, you'll lose 9 dyes. When you take out the dye, there will only be one dye.

 
Only if you forget and put a stack of dyes in a mod slot. If you remember to just add one you should be fine afaik.

 
Make a bundle

Code:
        <recipe name="modDyeRedBundle" count="1">
            <ingredient name="modDyeRed" count="10"/>
        </recipe>
 
Back
Top