summaryrefslogtreecommitdiff
path: root/minecraft/assets/config/CodeChickenCore.cfg
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2019-08-22 20:51:35 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2019-08-22 20:51:35 -0400
commitf242b3b9e2d62cc2263e9e9288c9feb9613e8132 (patch)
treec3fa648e9b44594fbda16f53c5ebd94c5fa4cd21 /minecraft/assets/config/CodeChickenCore.cfg
parent20bef6e26d948698398bd16aeab8c9e6b89110e4 (diff)
Update
Diffstat (limited to 'minecraft/assets/config/CodeChickenCore.cfg')
-rwxr-xr-xminecraft/assets/config/CodeChickenCore.cfg18
1 files changed, 18 insertions, 0 deletions
diff --git a/minecraft/assets/config/CodeChickenCore.cfg b/minecraft/assets/config/CodeChickenCore.cfg
index 98426c4..34fd4eb 100755
--- a/minecraft/assets/config/CodeChickenCore.cfg
+++ b/minecraft/assets/config/CodeChickenCore.cfg
@@ -1,3 +1,21 @@
#CodeChickenCore configuration file.
#set to true to completely deobfuscate mcp names
+dev.deobfuscate=true
+#Enabling this setting will make all minecraft classes public at runtime in MCP just as they are in modloader.
+#You should ONLY use this when you are testing with a mod that relies on runtime publicity and doesn't include access transformers.
+#Such mods are doing the wrong thing and should be fixed.
+dev.runtimePublic=false
+
+#Various tweaks that can be applied to game mechanics.
+tweaks
+{
+ #If set to true and doFireTick is disabled in the game rules, fire will still dissipate if it's not over a fire source
+ doFireTickOut=true
+ #If set to true, creepers will not destroy landscape. (A version of mobGriefing setting just for creepers)
+ environmentallyFriendlyCreepers=false
+ #If set to true two adjacent water source blocks will not generate a third.
+ finiteWater=false
+ #If set to false, leaves will only replace air when growing
+ softLeafReplace=false
+}