General Information - GrowthcraftCE/Growthcraft-1.7 GitHub Wiki
Welcome to the Growthcraft General Information section.
Config Tags (Effective in 2.6.x+)
You may encounter some config options that use scsv
(semi-colon separated values), Growthcraft uses a special parser for handling these values called TagParser
TagParser has a few simple rules
-
This SHOULD be treated as an exclusion+
This MUST be present~
Useless, normally mean "this value is optional", which is the default behaviour
EG.
+MOUNTAIN,HILLS
, means thatMOUNTAIN
is required, optionally it can haveHILLS
+MOUNTAIN,-SNOWY
, means thatMOUNTAIN
is required, and it should NOT be aSNOWY
Rule of Thumb, using qualifiers (+, -) usually defeats the purpose of optional values, if you decide to use these qualifiers, it's best to remove the optional values as they become useless.