Skip to content

Commit

Permalink
2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
calloatti committed Sep 4, 2019
1 parent 3a49084 commit e2d3a6a
Show file tree
Hide file tree
Showing 54 changed files with 1,599 additions and 1,430 deletions.
2 changes: 1 addition & 1 deletion client/.minecraft/config/autofish.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"isAutofishEnabled": true,
"multirod": true,
"noBreak": true,
"noBreak": false,
"useSoundDetection": false,
"recastDelay": 1500,
"clearLagRegex": "\\[ClearLag\\] Removed [0-9]+ Entities!"
Expand Down
8 changes: 8 additions & 0 deletions client/.minecraft/config/climaticworldtype.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"humidity_zone_size": 11.0,
"temperature_zone_size": 10.0,

"biome_size": 4,
"river_size": 5,
"large_shores": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"item": "minecraft:shears"
}
}
],
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 1.0,
"max": 4.0,
"type": "minecraft:uniform"
}
}
],
"name": "minecraft:string"
},
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"name": "minecraft:white_wool"
}
]
}
]
}]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"type": "minecraft:entity",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"weight": 3,
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 0.0,
"max": 2.0,
"type": "minecraft:uniform"
}
},
{
"function": "minecraft:looting_enchant",
"count": {
"min": 0.0,
"max": 1.0
}
}
],
"name": "minecraft:scute"
}
]
},
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:bowl"
}
],
"conditions": [
{
"condition": "minecraft:damage_source_properties",
"predicate": {
"is_lightning": true
}
}
]
}
]
}
4 changes: 4 additions & 0 deletions client/.minecraft/config/enchantedtooltips/config.json5
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
"enableForBooks": true,
// Should the enchant info be displayed on enchanted tools
"enableForItems": true,
// Should the enchant info be displayed in Enchanting Table
"enableForEnchantTable": true,
// Display 'Press for info' for enchant info
"displayPressForInfo": false,
// Always display the Enchant Information
"alwaysShowEnchantInfo": true,
// Display missing enchantment data
"displayMissingEnchant": true,
// Display 'Description' in tooltip
"displayDescription": true,
// Display 'Max level' in tooltip
Expand Down
5 changes: 4 additions & 1 deletion client/.minecraft/config/extrapieces/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"generateDefaultPack": true,
"forceUpdateDefaultPack": false,
"everythingStonecuttable": false
"everythingStonecuttable": false,
"debugOutput": false,
"moreDebugOutput": false,
"dumpData": false
}
Loading

0 comments on commit e2d3a6a

Please sign in to comment.