Jump to content

Recommended Posts

Hello, I'm here to ask for your help. I wanted to know if someone could find a way (in the .ini file I guess) to make the Bush Hat recipe works with a Tropical Bush ('berrybush2') and not only with the regular bush, obviously because in SW tropical bushes are the only type of bush present, so it's a bit annoying not to be able to make one. 

Thanks for your help !

Besides, because they're basically the same except for their skin , do you think it was just an omission from Klei, or intended ? 

Well, you could just add a new recipe, and that will override the old one.

The easiest and least problematic way would be making a mod.

Put this in your modmain.lua:

require = GLOBAL.require
RECIPETABS = GLOBAL.RECIPETABS
Recipe = GLOBAL.Recipe
Ingredient = GLOBAL.Ingredient
TECH = GLOBAL.TECH

if GLOBAL.IsDLCEnabled(GLOBAL.CAPY_DLC) then
Recipe("bushhat", {Ingredient("strawhat", 1),Ingredient("rope", 1),Ingredient("dug_berrybush2", 1)}, RECIPETABS.DRESS,  TECH.SCIENCE_TWO)
end

I guess this will probably be changed in a future update anyways.

Edited by PanAzej

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...