Jump to content

Recommended Posts

i'd do something like this (server mod)

Spoiler
-- Assuming all naming conventions of switcherdoodle prefabs (modded or unmodded) start with "mutator"
local function startsWith(str,ante)
   return string.sub(str, 1 , string.len(ante)) == ante
end

AddRecipePostInitAny(function(recipe)
	if not startsWith(recipe.name, "mutator") then return end
	recipe.level.SPIDERCRAFT = 0
end)

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...