Skip to content

Commit

Permalink
fixed genrewards and sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
ImAK9 committed Nov 22, 2021
1 parent 26d39f7 commit af3f878
Show file tree
Hide file tree
Showing 6 changed files with 836 additions and 1,071 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,5 @@ local/
.curseclient

ds_private_storage.json

servers.dat
2 changes: 1 addition & 1 deletion config/ftbquests/quests/reward_tables/genrewards.snbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{ item: "minecraft:wither_rose", count: 3, weight: 2 }
{ item: "minecraft:ender_pearl", count: 3, weight: 2 }
{ item: "minecraft:slime_block", count: 3, weight: 2 }
{ item: "minecraft:tnt", count: 3, weight 2 }
{ item: "minecraft:tnt", count: 3, weight: 2 }
{ item: "croptopia:trifle", count: 3, weight: 10 }
{ item: "croptopia:tres_leche_cake", count: 3, weight: 10 }
]
Expand Down
34 changes: 17 additions & 17 deletions config/inventoryhud.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"inv_toggle": true,
"inv_toggle": false,
"inv_mini": false,
"inv_vert": false,
"inv_alpha": 0,
Expand All @@ -11,31 +11,31 @@
"bar_duration": 300,
"pot_mini": false,
"pot_hor": false,
"arm_toggle": false,
"arm_toggle": true,
"arm_above": 100,
"arm_view": "percentage",
"move_all": true,
"show_empty": true,
"show_empty": false,
"show_armor": true,
"show_main": true,
"show_off": true,
"show_arrows": true,
"show_inv": true,
"show_main": false,
"show_off": false,
"show_arrows": false,
"show_inv": false,
"arm_bars": false,
"arm_scale": 100,
"show_count": false,
"inv_x": 0,
"inv_y": 150,
"inv_val": "BOTTOM",
"inv_hal": "MIDDLE",
"pot_x": 30,
"pot_y": 0,
"inv_x": 160,
"inv_y": -53,
"inv_val": "CENTER",
"inv_hal": "RIGHT",
"pot_x": 60,
"pot_y": -16,
"pot_val": "CENTER",
"pot_hal": "LEFT",
"pot_hal": "RIGHT",
"arm_x": 0,
"arm_y": 70,
"arm_val": "BOTTOM",
"arm_hal": "MIDDLE",
"arm_y": 0,
"arm_val": "CENTER",
"arm_hal": "LEFT",
"helm_x": 103,
"helm_y": 54,
"chest_x": 103,
Expand Down
8 changes: 4 additions & 4 deletions config/inventorysorter/config.json5
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
// Enable 'Sort' button in inventorys
"displaySort": true,
"displaySort": false,
// Middle click to sort inventorys
"middleClick": true,
// Enable second 'Sort' button in player inv
"seperateBtn": true,
"seperateBtn": false,
// Sorting inv also sorts player inv
"sortPlayer": false,
// Method of sorting, NAME,CATEGORY,MOD
"sortType": "NAME",
// Display Sort Button Tooltip
"displayTooltip": true,
"displayTooltip": false,
// Sort Inventory key
"keybinding": "key.keyboard.p",
"keybinding": "key.mouse.middle",
// Should sort half of open inv highlighted by mouse
"sortMouseHighlighted": true,
"debugMode": false
Expand Down
Loading

0 comments on commit af3f878

Please sign in to comment.