Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.63 KB | None | 0 0
  1. java.lang.IllegalArgumentException: No enum constant net.minecraftforge.common.BiomeDictionary.Type.SUNFLOWER PLAINS
  2. at java.lang.Enum.valueOf(Unknown Source) ~[?:1.8.0_51]
  3. at net.minecraftforge.common.BiomeDictionary$Type.valueOf(BiomeDictionary.java:15) ~[BiomeDictionary$Type.class:?]
  4. at CustomOreGen.Util.BiomeDescriptor.matchingWeight(BiomeDescriptor.java:134) ~[BiomeDescriptor.class:?]
  5. at CustomOreGen.Util.BiomeDescriptor.compileMatches(BiomeDescriptor.java:166) ~[BiomeDescriptor.class:?]
  6. at CustomOreGen.Util.BiomeDescriptor.getTotalMatchWeight(BiomeDescriptor.java:242) ~[BiomeDescriptor.class:?]
  7. at CustomOreGen.Server.MapGenOreDistribution.validate(MapGenOreDistribution.java:332) ~[MapGenOreDistribution.class:?]
  8. at CustomOreGen.Server.MapGenCloud.validate(MapGenCloud.java:80) ~[MapGenCloud.class:?]
  9. at CustomOreGen.Server.ServerState.validateDistributions(ServerState.java:109) [ServerState.class:?]
  10. at CustomOreGen.Server.ServerState.getWorldConfig(ServerState.java:57) [ServerState.class:?]
  11. at CustomOreGen.ForgeInterface.onLoadWorld(ForgeInterface.java:46) [ForgeInterface.class:?]
  12. at cpw.mods.fml.common.eventhandler.ASMEventHandler_13_ForgeInterface_onLoadWorld_Load.invoke(.dynamic) [?:?]
  13. at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?]
  14. at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:138) [EventBus.class:?]
  15. at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:73) [bsx.class:?]
  16. at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:92) [bsx.class:?]
  17. at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:387) [MinecraftServer.class:?]
  18. at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685) [?:?]
  19.  
  20. <IfCondition condition=':= hic2TinDist = "strategicClouds"'>
  21. <Cloud name='HardTinCloud' block='HarderOres:ore_tin:1' inherits='PresetStrategicCloud'>
  22. <Description>
  23. Diffuse tin cloud filled with random, denser, pockets.
  24. </Description>
  25. <DrawWireframe>:=drawWireframes</DrawWireframe>
  26. <WireframeColor>0x20FFFFFF</WireframeColor>
  27. <Setting name='CloudHeight' avg='48' range='6' />
  28. <Setting name='CloudSizeNoise' avg='0.1' range='0.025' />
  29. <Setting name='DistributionFrequency' avg=':= 0.01 * hic2TinFreq * if(age,age.ic2TinClouds,1)'/>
  30. <Setting name='CloudRadius' avg=':= 1.5 * hic2TinSize * _default_' range=':= 0.6 * hic2TinSize * _default_'/>
  31. <Setting name='CloudThickness' avg=':= 8.0 * hic2TinSize' range='2'/>
  32. <Setting name='OreDensity' avg='0.075'/>
  33. <BiomeType name='Sunflower Plains' weight='1'/>
  34. <BiomeType name='Plains' weight='1'/>
  35. <BiomeType name='Forest' weight='0.25'/>
  36. <BiomeType name='ForestHills' weight='0.25'/>
  37. <BiomeType name='Birch Forest' weight='0.25'/>
  38. <BiomeType name='.*' weight='0.1'/>
  39. <Cloud name='HardTinCloudChild' block='HarderOres:ore_tin:11' inherits='PresetStrategicCloud'>
  40. <DrawWireframe>:=drawWireframes</DrawWireframe>
  41. <WireframeColor>0x20BFBFBF</WireframeColor>
  42. <Setting name='CloudHeight' avg='48' range='2' />
  43. <Setting name='ParentRangeLimit' avg='18' range='6' />
  44. <Setting name='CloudSizeNoise' avg='0.05' range='0.05' />
  45. <Setting name='DistributionFrequency' avg='1.5' range='.5'/>
  46. <Setting name='CloudRadius' avg=':= 6 * hic2TinSize' range=':= 2.6 * hic2TinSize'/>
  47. <Setting name='CloudThickness' avg='3.0' range='0.3'/>
  48. <Setting name='OreDensity' avg='0.85'/>
  49. <Cloud name='HardTinCloudCore' block='HarderOres:ore_tin:15' inherits='PresetStrategicCloud'>
  50. <DrawWireframe>:=drawWireframes</DrawWireframe>
  51. <WireframeColor>0x20888888</WireframeColor>
  52. <Setting name='CloudHeight' avg='48' range='1' />
  53. <Setting name='ParentRangeLimit' avg='3' range='1' />
  54. <Setting name='CloudSizeNoise' avg='0.05' range='0.05' />
  55. <Setting name='DistributionFrequency' avg='2' range='0'/>
  56. <Setting name='CloudRadius' avg=':= 2 * hic2TinSize' range='0'/>
  57. <Setting name='CloudThickness' avg='1.5' range='0.15'/>
  58. <Setting name='OreDensity' avg='1'/>
  59. </Cloud>
  60. </Cloud>
  61. </Cloud>
  62. </IfCondition>
  63.  
  64. Issue happens with These three.
  65. <BiomeType name='Sunflower Plains' weight='1'/>
  66. <BiomeType name='ForestHills' weight='0.25'/>
  67. <BiomeType name='Birch Forest' weight='0.25'/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement