Jump to content

Dedicated Server and New Craftable Items?


Recommended Posts

I've already told you what mod to look at in order to fix this problem, but here is the code specifically.

 

 


--#rezecib Had to move all the recipes here to support the abovelocal Recipe = GLOBAL.Recipelocal RECIPETABS = GLOBAL.RECIPETABSlocal TECH = GLOBAL.TECHlocal recipes = {	Recipe("spidereggsack", {Ingredient("silk", 12), Ingredient("spidergland", 6), Ingredient("papyrus", 6)}, RECIPETABS.TOWN, TECH.NONE),	Recipe("wathgrithrhat", {Ingredient("goldnugget", 2), Ingredient("rocks", 2)}, RECIPETABS.WAR, {SCIENCE = 0, MAGIC = 0, ANCIENT = 0}, nil, nil, nil, nil, true),	Recipe("spear_wathgrithr", {Ingredient("twigs", 2), Ingredient("flint", 2), Ingredient("goldnugget", 2)}, RECIPETABS.WAR, {SCIENCE = 0, MAGIC = 0, ANCIENT = 0}, nil, nil, nil, nil, true),}--#rezecib this is a bit of a hack; hardcoding the sortkeys should avoid mod clashes-- due to different load order, but if a mod somehow declares sortkeys in this range in-- the same way, then problems will always occur with that modlocal sortkey = -9000for k,v in pairs(recipes) do	sortkey = sortkey - 1	v.sortkey = sortkey	v.tagneeded = trueendGLOBAL.STRINGS.RECIPE_DESC.SPIDEREGGSACK = "Get a little help from your friends." 
Edited by Kzisor
Link to comment
Share on other sites

I've already told you what mod to look at in order to fix this problem, but here is the code specifically since you insist that I'm wrong.

 

That workaround should be pinned on top of dedicated server forum.

And issue itself fixed ASAP.

I don't have time to play detective for days, only to fix the issues, that are not caused by me.

Link to comment
Share on other sites

As I said before, the issue has nothing to do with dedicated servers; it is a direct issue with how mods are loaded in Don't Starve Together on the server and how they are loaded on the client. You will see the same issue if you run a non-dedicated server as well.

Link to comment
Share on other sites

As I said before, the issue has nothing to do with dedicated servers; it is a direct issue with how mods are loaded in Don't Starve Together on the server and how they are loaded on the client. You will see the same issue if you run a non-dedicated server as well.

That never happened for me or other people playing with me.

Link to comment
Share on other sites

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
 Share

×
  • Create New...