Advertisement
Guest User

7 Days to Die A20 Mod to make all biomes share one lighting spectrum

a guest
Dec 26th, 2021
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.29 KB | None | 0 0
  1. 7 Days to Die A20 Mod to make all biomes share one lighting spectrum, and to remove the smoke fog from the Burnt Forest areas. To use a different spectrum, replace all instances of pine_forest with your spectrum of choice. Note, you'll also need to modify the line for your chosen spectrum to modify the pine_forest biome.
  2.  
  3. Mods\BiomeFix\ModInfo.XML
  4.  
  5. <?xml version="1.1" encoding="UTF-8" ?>
  6. <xml>
  7.     <ModInfo>
  8.         <Name value="Toad - BiomeFix" />
  9.         <Description value="Remove Particle Effects from Burnt Forest and Wasteland, and make all biomes use the same spectrum." />
  10.         <Author value="Toad" />
  11.         <Version value="1.1" />
  12.     </ModInfo>
  13. </xml>
  14.  
  15. Mods\BiomeFix\Config\Biomes.XML
  16.  
  17. <?xml version="1.0" encoding="UTF-8"?>
  18. <configs>
  19.     <remove  xpath="/worldgeneration/biomes/biome[@name='burnt_forest']/weather/ParticleEffect" />
  20.     <append  xpath="/worldgeneration/biomes/biome[@name='burnt_forest']"><spectrum name="pine_forest"/></append>
  21.     <set  xpath="/worldgeneration/biomes/biome[@name='wasteland']/spectrum[@name='burnt_forest']/@name">pine_forest</set>
  22.     <set  xpath="/worldgeneration/biomes/biome[@name='desert']/spectrum[@name='desert']/@name">pine_forest</set>
  23.     <set  xpath="/worldgeneration/biomes/biome[@name='snow']/spectrum[@name='snow']/@name">pine_forest</set>
  24. </configs>
  25.  
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement