katubug

forge config

Aug 31st, 2019
497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.92 KB | None | 0 0
  1. # Configuration file
  2.  
  3. client {
  4. # Toggle off to make missing model text in the gui fit inside the slot.
  5. B:zoomInMissingModelTextInGui=false
  6.  
  7. # Enable uploading cloud geometry to the GPU for faster rendering.
  8. B:forgeCloudsEnabled=true
  9.  
  10. # Disable culling of hidden faces next to stairs and slabs. Causes extra rendering, but may fix some resource packs that exploit this vanilla mechanic.
  11. B:disableStairSlabCulling=false
  12.  
  13. # Enable forge to queue all chunk updates to the Chunk Update thread. May increase FPS significantly, but may also cause weird rendering lag. Not recommended for computers without a significant number of cores available.
  14. B:alwaysSetupTerrainOffThread=false
  15.  
  16. # Allow item rendering to detect emissive quads and draw them properly. This allows glowing blocks to look the same in item form, but incurs a very slight performance hit.
  17. B:allowEmissiveItems=true
  18.  
  19. # Control the range of sky blending for colored skies in biomes.
  20. I:biomeSkyBlendRange <
  21. 2
  22. 4
  23. 6
  24. 8
  25. 10
  26. 12
  27. 14
  28. 16
  29. 18
  30. 20
  31. 22
  32. 24
  33. 26
  34. 28
  35. 30
  36. 32
  37. 34
  38. >
  39.  
  40. # Enable the forge block rendering pipeline - fixes the lighting of custom models.
  41. B:forgeLightPipelineEnabled=true
  42.  
  43. # When enabled, makes specific reload tasks such as language changing quicker to run.
  44. B:selectiveResourceReloadEnabled=false
  45. }
  46.  
  47.  
  48. general {
  49. # Set to true to disable Forge's version check mechanics. Forge queries a small json file on our server for version information. For more details see the ForgeVersion class in our github.
  50. B:disableVersionCheck=false
  51.  
  52. # Controls the number threshold at which Packet51 is preferred over Packet52, default and minimum 64, maximum 1024
  53. I:clumpingThreshold=64
  54.  
  55. # Set to true to enable the post initialization sorting of crafting recipes using Forge's sorter. May cause desyncing on conflicting recipes. MUST RESTART MINECRAFT IF CHANGED FROM THE CONFIG GUI.
  56. B:sortRecipies=true
  57.  
  58. # Set this to true to remove any Entity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
  59. B:removeErroringEntities=false
  60.  
  61. # Set this to true to remove any TileEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
  62. B:removeErroringTileEntities=false
  63.  
  64. # Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticeable differences in mechanics so default is vanilla behavior. Default: false
  65. B:fullBoundingBoxLadders=false
  66.  
  67. # Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic.
  68. D:zombieBaseSummonChance=0.1
  69.  
  70. # Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic.
  71. D:zombieBabyChance=0.05
  72.  
  73. # Log cascading chunk generation issues during terrain population.
  74. B:logCascadingWorldGeneration=false
  75.  
  76. # Fix vanilla issues that cause worldgen cascading. This DOES change vanilla worldgen so DO NOT report bugs related to world differences if this flag is on.
  77. B:fixVanillaCascading=false
  78.  
  79. # The time in ticks the server will wait when a dimension was queued to unload. This can be useful when rapidly loading and unloading dimensions, like e.g. throwing items through a nether portal a few time per second.
  80. I:dimensionUnloadQueueDelay=20
  81. B:enableGlobalConfig=false
  82.  
  83. version_checking {
  84. B:Global=true
  85. }
  86.  
  87. }
  88.  
  89.  
  90. version_checking {
  91. # Enable the entire mod update check system. This only applies to mods using the Forge system.
  92. B:Global=true
  93. }
Advertisement
Add Comment
Please, Sign In to add comment