Advertisement
Guest User

Untitled

a guest
Aug 9th, 2014
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. # Configuration file
  2.  
  3. general {
  4. # 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.
  5. B:disableVersionCheck=false
  6.  
  7. # Controls the number threshold at which Packet51 is preferred over Packet52, default and minimum 64, maximum 1024
  8. I:clumpingThreshold=64
  9.  
  10. # Set to true to enable the post initialization sorting of crafting recipes using Forge's sorter. May cause desyncing on conflicting recipies. MUST RESTART MINECRAFT IF CHANGED FROM THE CONFIG GUI.
  11. B:sortRecipies=true
  12.  
  13. # Set this to true to force a crash if more than one block attempts to link back to the same Fluid. Enabled by default.
  14. B:forceDuplicateFluidBlockCrash=true
  15.  
  16. # 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.
  17. B:removeErroringEntities=true
  18.  
  19. # 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.
  20. B:removeErroringTileEntities=true
  21.  
  22. # Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticable differences in mechanics so default is vanilla behavior. Default: false
  23. B:fullBoundingBoxLadders=false
  24.  
  25. # Control the range of sky blending for colored skies in biomes.
  26. I:biomeSkyBlendRange <
  27. 2
  28. 4
  29. 6
  30. 8
  31. 10
  32. 12
  33. 14
  34. 16
  35. 18
  36. 20
  37. 22
  38. 24
  39. 26
  40. 28
  41. 30
  42. 32
  43. 34
  44. >
  45.  
  46. # Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic.
  47. D:zombieBaseSummonChance=0.1
  48.  
  49. # Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic.
  50. D:zombieBabyChance=0.05
  51.  
  52. # Set to false to attempt to allocate 8 stencil bits when starting the GL display context.
  53. B:enableStencilBits=true
  54.  
  55. # The spawn fuzz when a player respawns in the world, this is controlable by WorldType, this config option is for the default overworld.
  56. I:defaultSpawnFuzz=20
  57. B:enableGlobalConfig=false
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement